diff options
Diffstat (limited to 'umbrello/umbrello/main.cpp')
-rw-r--r-- | umbrello/umbrello/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/umbrello/umbrello/main.cpp b/umbrello/umbrello/main.cpp index faba82d3..5d104d4f 100644 --- a/umbrello/umbrello/main.cpp +++ b/umbrello/umbrello/main.cpp @@ -161,7 +161,7 @@ KStartupLogo* showStartupLogo(KConfig* cfg, bool showGUI) { #endif KWin::setState(startLogo->winId(), NET::KeepAbove); startLogo->show(); - QApplication::flushX(); + TQApplication::flushX(); } return startLogo; @@ -173,7 +173,7 @@ void initDocument(KCmdLineArgs *args, KConfig* cfg) { } else { cfg->setGroup( "General Options" ); bool last = cfg->readBoolEntry( "loadlast", false ); - QString file = cfg->readPathEntry( "lastFile" ); + TQString file = cfg->readPathEntry( "lastFile" ); if( last && !file.isEmpty() ) { UMLApp::app()->openDocumentFile( KURL( file ) ); } else { @@ -183,7 +183,7 @@ void initDocument(KCmdLineArgs *args, KConfig* cfg) { } void exportAllViews(KCmdLineArgs *args, const QCStringList &exportOpt) { - QString extension(exportOpt.last()); + TQString extension(exportOpt.last()); kDebug() << "extension: " << extension << endl; // export to the specified directory, or the directory where the file is saved |