diff options
Diffstat (limited to 'src/main_assistant.cpp')
-rw-r--r-- | src/main_assistant.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main_assistant.cpp b/src/main_assistant.cpp index 0eb80192..d851447f 100644 --- a/src/main_assistant.cpp +++ b/src/main_assistant.cpp @@ -9,7 +9,7 @@ #include <kdebug.h> #include <dcopclient.h> -#include <qfileinfo.h> +#include <tqfileinfo.h> #include "splashscreen.h" #include "toplevel.h" @@ -83,10 +83,10 @@ int main(int argc, char *argv[]) KDevAssistantExtension::init(); KDevSplashScreen *splash = 0; - QString splashFile = locate("data", "kdevelop/pics/kdevassistant-splash.png"); + TQString splashFile = locate("data", "kdevelop/pics/kdevassistant-splash.png"); if (!splashFile.isEmpty()) { - QPixmap pm; + TQPixmap pm; pm.load(splashFile); splash = new KDevSplashScreen( pm ); } @@ -94,8 +94,8 @@ int main(int argc, char *argv[]) app.processEvents(); - QObject::connect(PluginController::getInstance(), SIGNAL(loadingPlugin(const QString &)), - splash, SLOT(showMessage(const QString &))); + TQObject::connect(PluginController::getInstance(), TQT_SIGNAL(loadingPlugin(const TQString &)), + splash, TQT_SLOT(showMessage(const TQString &))); if (splash) splash->message( i18n( "Loading Settings" ) ); TopLevel::getInstance()->loadSettings(); |