summaryrefslogtreecommitdiffstats
path: root/src/main_assistant.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2014-05-25 15:37:31 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2014-05-25 15:37:31 +0900
commit6392f5a9dfce2bf83617d49bb7f332181ec6004e (patch)
treeab69e390f7962b7e7dda1a3a64f035c61c751cf4 /src/main_assistant.cpp
parentaba2788b428dc53243407902e9ccbb20b97a69fd (diff)
downloadtdevelop-6392f5a9dfce2bf83617d49bb7f332181ec6004e.tar.gz
tdevelop-6392f5a9dfce2bf83617d49bb7f332181ec6004e.zip
Revert "Finish renaming tdevelop components"
This reverts commit 722ce1efbac31c61b1d4b13f7e075c9f311e3e73.
Diffstat (limited to 'src/main_assistant.cpp')
-rw-r--r--src/main_assistant.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/main_assistant.cpp b/src/main_assistant.cpp
index 7cd9a98d..ba2c1886 100644
--- a/src/main_assistant.cpp
+++ b/src/main_assistant.cpp
@@ -18,7 +18,7 @@
#include "core.h"
#include "projectmanager.h"
-#include "tdevassistantextension.h"
+#include "kdevassistantextension.h"
static TDECmdLineOptions options[] =
{
@@ -30,7 +30,7 @@ static TDECmdLineOptions options[] =
int main(int argc, char *argv[])
{
static const char description[] = I18N_NOOP("The TDevelop Integrated Development Environment:\nassistant and documentation viewer");
- TDEAboutData aboutData("tdevassistant", I18N_NOOP("TDevelop Assistant"),
+ TDEAboutData aboutData("kdevassistant", I18N_NOOP("TDevelop Assistant"),
VERSION, description, TDEAboutData::License_GPL,
I18N_NOOP("(c) 1999-2007, The KDevelop developers"), "", "http://www.kdevelop.org");
aboutData.addAuthor("Alexander Dymo", I18N_NOOP("Release coordinator, Overall improvements, Pascal support, C++ support, New File and Documentation parts"), "adymo@kdevelop.org");
@@ -80,15 +80,15 @@ int main(int argc, char *argv[])
TDEApplication app;
- TDevAssistantExtension::init();
+ KDevAssistantExtension::init();
- TDevSplashScreen *splash = 0;
- TQString splashFile = locate("data", "tdevelop/pics/tdevassistant-splash.png");
+ KDevSplashScreen *splash = 0;
+ TQString splashFile = locate("data", "tdevelop/pics/kdevassistant-splash.png");
if (!splashFile.isEmpty())
{
TQPixmap pm;
pm.load(splashFile);
- splash = new TDevSplashScreen( pm );
+ splash = new KDevSplashScreen( pm );
}
if (splash) splash->show();
@@ -109,7 +109,7 @@ int main(int argc, char *argv[])
if (splash) delete splash;
- kapp->dcopClient()->registerAs("tdevassistant");
+ kapp->dcopClient()->registerAs("kdevassistant");
return app.exec();
}