summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-20 00:24:38 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-20 00:24:38 -0600
commit95e28f5bcadbf0ac052c4f29d77b4ab5e6648d1b (patch)
tree4c22f2f3096672431df9180a0946c137012f3f2c /src
parentbdeb717137b6fc8693198008ccb97f8213973416 (diff)
downloadtdevelop-95e28f5bcadbf0ac052c4f29d77b4ab5e6648d1b.tar.gz
tdevelop-95e28f5bcadbf0ac052c4f29d77b4ab5e6648d1b.zip
Rename KApplication to TDEApplication to avoid conflicts with KDE4
Diffstat (limited to 'src')
-rw-r--r--src/Mainpage.dox2
-rw-r--r--src/main.cpp2
-rw-r--r--src/main_assistant.cpp2
-rw-r--r--src/profileengine/editor/main.cpp2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/Mainpage.dox b/src/Mainpage.dox
index 135e65e4..bbf96246 100644
--- a/src/Mainpage.dox
+++ b/src/Mainpage.dox
@@ -51,7 +51,7 @@ Example:
KCmdLineArgs::init(argc, argv, &aboutData);
KCmdLineArgs::addCmdLineOptions( options );
- KApplication app;
+ TDEApplication app;
MyAppExtension::init();
diff --git a/src/main.cpp b/src/main.cpp
index f6ff2789..cba4e334 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -84,7 +84,7 @@ int main(int argc, char *argv[])
TDECmdLineArgs::addCmdLineOptions( options );
TDECmdLineArgs* args = TDECmdLineArgs::parsedArgs();
- KApplication app;
+ TDEApplication app;
KDevIDEExtension::init();
diff --git a/src/main_assistant.cpp b/src/main_assistant.cpp
index 25e7202a..8f8214b2 100644
--- a/src/main_assistant.cpp
+++ b/src/main_assistant.cpp
@@ -78,7 +78,7 @@ int main(int argc, char *argv[])
TDECmdLineArgs::addCmdLineOptions( options );
// TDECmdLineArgs* args = TDECmdLineArgs::parsedArgs();
- KApplication app;
+ TDEApplication app;
KDevAssistantExtension::init();
diff --git a/src/profileengine/editor/main.cpp b/src/profileengine/editor/main.cpp
index 7c43d24f..c88caea0 100644
--- a/src/profileengine/editor/main.cpp
+++ b/src/profileengine/editor/main.cpp
@@ -36,7 +36,7 @@ int main(int argc, char **argv)
TDECmdLineArgs::init(argc, argv, &about);
TDECmdLineArgs::addCmdLineOptions(options);
- KApplication app(argc, argv);
+ TDEApplication app(argc, argv);
ProfileEditor editor;
editor.show();
app.setMainWidget(&editor);