diff options
Diffstat (limited to 'src/main_assistant.cpp')
-rw-r--r-- | src/main_assistant.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/main_assistant.cpp b/src/main_assistant.cpp index ba2c1886..7cd9a98d 100644 --- a/src/main_assistant.cpp +++ b/src/main_assistant.cpp @@ -18,7 +18,7 @@ #include "core.h" #include "projectmanager.h" -#include "kdevassistantextension.h" +#include "tdevassistantextension.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("kdevassistant", I18N_NOOP("TDevelop Assistant"), + TDEAboutData aboutData("tdevassistant", 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; - KDevAssistantExtension::init(); + TDevAssistantExtension::init(); - KDevSplashScreen *splash = 0; - TQString splashFile = locate("data", "tdevelop/pics/kdevassistant-splash.png"); + TDevSplashScreen *splash = 0; + TQString splashFile = locate("data", "tdevelop/pics/tdevassistant-splash.png"); if (!splashFile.isEmpty()) { TQPixmap pm; pm.load(splashFile); - splash = new KDevSplashScreen( pm ); + splash = new TDevSplashScreen( pm ); } if (splash) splash->show(); @@ -109,7 +109,7 @@ int main(int argc, char *argv[]) if (splash) delete splash; - kapp->dcopClient()->registerAs("kdevassistant"); + kapp->dcopClient()->registerAs("tdevassistant"); return app.exec(); } |