diff options
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.cpp b/src/main.cpp index f79bbca..1d1da63 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -64,7 +64,7 @@ int main( int argc, char ** argv ) KApplication app; #else - QApplication app( argc, argv ); + TQApplication app( argc, argv ); #endif appConfig.load(); @@ -79,15 +79,15 @@ int main( int argc, char ** argv ) if ( !client->attach() ) qWarning("DCOP attach failed"); - //QCString realAppId = client->registerAs( kapp->name() ); - QCString realAppId = client->registerAs( "kchmviewer" ); + //TQCString realAppId = client->registerAs( kapp->name() ); + TQCString realAppId = client->registerAs( "kchmviewer" ); #endif mainWindow = new KCHMMainWindow(); mainWindow->show(); #if !defined(USE_KDE) - app.connect( &app, SIGNAL(lastWindowClosed()), &app, SLOT(quit()) ); + app.connect( &app, TQT_SIGNAL(lastWindowClosed()), &app, TQT_SLOT(quit()) ); #else app.setMainWidget( mainWindow ); #endif |