diff options
Diffstat (limited to 'umbrello/umbrello/main.cpp')
-rw-r--r-- | umbrello/umbrello/main.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/umbrello/umbrello/main.cpp b/umbrello/umbrello/main.cpp index 6408c8d6..9298869d 100644 --- a/umbrello/umbrello/main.cpp +++ b/umbrello/umbrello/main.cpp @@ -62,7 +62,7 @@ bool getShowGUI(TDECmdLineArgs *args); * @param showGUI If the GUI should be shown. * @return The startup logo for the application, or a null pointer if it shouldn't be shown. */ -KStartupLogo* showStartupLogo(TDEConfig* cfg, bool showGUI); +TDEStartupLogo* showStartupLogo(TDEConfig* cfg, bool showGUI); /** * Initializes the document used by the application. @@ -110,7 +110,7 @@ int main(int argc, char *argv[]) { flushEvents(); TDEConfig * cfg = app.config(); - KStartupLogo* startLogo = showStartupLogo(cfg, showGUI); + TDEStartupLogo* startLogo = showStartupLogo(cfg, showGUI); if (showGUI) { uml->show(); @@ -145,18 +145,18 @@ bool getShowGUI(TDECmdLineArgs *args) { return true; } -KStartupLogo* showStartupLogo(TDEConfig* cfg, bool showGUI) { - KStartupLogo* startLogo = 0L; +TDEStartupLogo* showStartupLogo(TDEConfig* cfg, bool showGUI) { + TDEStartupLogo* startLogo = 0L; cfg->setGroup( "General Options" ); bool showLogo = cfg->readBoolEntry( "logo", true ); if (showGUI && showLogo) { #if KDE_IS_VERSION(3,3,90) - startLogo = new KStartupLogo(0); + startLogo = new TDEStartupLogo(0); startLogo->setHideEnabled(true); KWin::setMainWindow(startLogo, UMLApp::app()->winId()); #else - startLogo = new KStartupLogo(UMLApp::app()); + startLogo = new TDEStartupLogo(UMLApp::app()); startLogo->setHideEnabled(true); #endif KWin::setState(startLogo->winId(), NET::KeepAbove); |