summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 23:59:36 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-19 23:59:36 -0600
commite6640e127687020778e765cb105ba1f8f3e37a5a (patch)
tree688edc4b130f93d92c2fb62d18b5fe9470517e50 /src
parent227d1ebc07e3926eeb6fca2f48c2567c836c5010 (diff)
downloadktechlab-e6640e127687020778e765cb105ba1f8f3e37a5a.tar.gz
ktechlab-e6640e127687020778e765cb105ba1f8f3e37a5a.zip
Rename KApplication to TDEApplication to avoid conflicts with KDE4
Diffstat (limited to 'src')
-rw-r--r--src/core/main.cpp2
-rw-r--r--src/icndocument.cpp2
-rw-r--r--src/itemdocument.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/core/main.cpp b/src/core/main.cpp
index 5c46d52..3fca769 100644
--- a/src/core/main.cpp
+++ b/src/core/main.cpp
@@ -41,7 +41,7 @@ int main(int argc, char **argv)
about.addCredit( "David Leggett", "Website hosting and feedback during early development." );
TDECmdLineArgs::init(argc, argv, &about);
TDECmdLineArgs::addCmdLineOptions(options);
- KApplication app;
+ TDEApplication app;
// register ourselves as a dcop client
app.dcopClient()->registerAs(app.name(), false);
diff --git a/src/icndocument.cpp b/src/icndocument.cpp
index 26da11f..e861b8f 100644
--- a/src/icndocument.cpp
+++ b/src/icndocument.cpp
@@ -1030,7 +1030,7 @@ void ICNDocument::copy()
data.addNodes( nodeList );
data.addConnectors( connectorList );
- KApplication::clipboard()->setText( data.toXML(), TQClipboard::Clipboard );
+ TDEApplication::clipboard()->setText( data.toXML(), TQClipboard::Clipboard );
}
void ICNDocument::selectAll()
diff --git a/src/itemdocument.cpp b/src/itemdocument.cpp
index cbe531b..d004419 100644
--- a/src/itemdocument.cpp
+++ b/src/itemdocument.cpp
@@ -406,7 +406,7 @@ void ItemDocument::cut()
void ItemDocument::paste()
{
- TQString xml = KApplication::clipboard()->text( TQClipboard::Clipboard );
+ TQString xml = TDEApplication::clipboard()->text( TQClipboard::Clipboard );
if ( xml.isEmpty() )
return;