diff options
Diffstat (limited to 'quanta/src/kqapp.cpp')
-rw-r--r-- | quanta/src/kqapp.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/quanta/src/kqapp.cpp b/quanta/src/kqapp.cpp index 39053e86..3b306f0f 100644 --- a/quanta/src/kqapp.cpp +++ b/quanta/src/kqapp.cpp @@ -47,7 +47,7 @@ KSplash::KSplash() TQPixmap pm( UserIcon(SPLASH_PICTURE) ); setBackgroundPixmap(pm); - TQRect desk = KGlobalSettings::splashScreenDesktopGeometry(); + TQRect desk = TDEGlobalSettings::splashScreenDesktopGeometry(); setGeometry( desk.center().x()-225, desk.center().y()-150, 450, 300 ); setLineWidth(0); show(); @@ -65,7 +65,7 @@ KQApplication::KQApplication() args = TDECmdLineArgs::parsedArgs(); splash = 0L; - KGlobal::dirs()->addPrefix(PREFIX); + TDEGlobal::dirs()->addPrefix(PREFIX); dcopClient()->registerAs("quanta", true); //FIXME: Do not hide the problem, but really fix the session restoration. @@ -121,7 +121,7 @@ void KQApplication::slotSplashTimeout() KQUniqueApplication::KQUniqueApplication() : KUniqueApplication() { - KGlobal::dirs()->addPrefix(PREFIX); + TDEGlobal::dirs()->addPrefix(PREFIX); dcopClient()->registerAs("quanta", false); } |