diff options
Diffstat (limited to 'tdeui/ksplashscreen.cpp')
-rw-r--r-- | tdeui/ksplashscreen.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tdeui/ksplashscreen.cpp b/tdeui/ksplashscreen.cpp index 6d605dcd7..82234bd94 100644 --- a/tdeui/ksplashscreen.cpp +++ b/tdeui/ksplashscreen.cpp @@ -17,9 +17,9 @@ Boston, MA 02110-1301, USA. */ -#include <kconfig.h> -#include <kglobal.h> -#include <kglobalsettings.h> +#include <tdeconfig.h> +#include <tdeglobal.h> +#include <tdeglobalsettings.h> #include <tqpixmap.h> @@ -27,7 +27,7 @@ KSplashScreen::KSplashScreen(const TQPixmap &pixmap, WFlags f): TQSplashScreen(pixmap, f) { - TQRect desk = KGlobalSettings::splashScreenDesktopGeometry(); + TQRect desk = TDEGlobalSettings::splashScreenDesktopGeometry(); resize(pixmap.width(), pixmap.height()); setGeometry( ( desk.width() / 2 ) - ( width() / 2 ) + desk.left(), ( desk.height() / 2 ) - ( height() / 2 ) + desk.top(), |