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 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();  } | 
