diff options
Diffstat (limited to 'kdevdesigner/src/main.cpp')
-rw-r--r-- | kdevdesigner/src/main.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kdevdesigner/src/main.cpp b/kdevdesigner/src/main.cpp index fc0f23f7..a535f575 100644 --- a/kdevdesigner/src/main.cpp +++ b/kdevdesigner/src/main.cpp @@ -17,7 +17,7 @@ * Free Software Foundation, Inc., * * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#include <qsplashscreen.h> +#include <tqsplashscreen.h> #include <kxmlguiclient.h> #include "kdevdesigner.h" @@ -56,13 +56,13 @@ int main(int argc, char **argv) else { // no session.. just start up normally - QSplashScreen * splash = 0; - QString splashFile = locate("data", "kdevelop/pics/kdevdesigner-splash.png"); + TQSplashScreen * splash = 0; + TQString splashFile = locate("data", "kdevelop/pics/kdevdesigner-splash.png"); if (!splashFile.isNull()) { - QPixmap pm; + TQPixmap pm; pm.load(splashFile); - splash = new QSplashScreen( pm ); + splash = new TQSplashScreen( pm ); splash->show(); } |