summaryrefslogtreecommitdiffstats
path: root/juk/splashscreen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'juk/splashscreen.cpp')
-rw-r--r--juk/splashscreen.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/juk/splashscreen.cpp b/juk/splashscreen.cpp
index 5f91a070..b8b69c87 100644
--- a/juk/splashscreen.cpp
+++ b/juk/splashscreen.cpp
@@ -19,7 +19,7 @@
#include <kstandarddirs.h>
#include <kdebug.h>
-#include <qpainter.h>
+#include <tqpainter.h>
#include "splashscreen.h"
@@ -27,10 +27,10 @@ SplashScreen *SplashScreen::splash = 0;
bool SplashScreen::done = false;
int SplashScreen::count = 0;
-static QString loadedText(int i)
+static TQString loadedText(int i)
{
- static QString loading = i18n("Loading").upper();
- return loading + ": " + QString::number(i);;
+ static TQString loading = i18n("Loading").upper();
+ return loading + ": " + TQString::number(i);;
}
////////////////////////////////////////////////////////////////////////////////
@@ -70,18 +70,18 @@ void SplashScreen::update()
// protected members
////////////////////////////////////////////////////////////////////////////////
-SplashScreen::SplashScreen() : QLabel(0 , "splashScreen", Qt::WStyle_Splash)
+SplashScreen::SplashScreen() : TQLabel(0 , "splashScreen", Qt::WStyle_Splash)
{
- QPixmap background = UserIcon("splash");
+ TQPixmap background = UserIcon("splash");
resize(background.size());
setPaletteBackgroundPixmap(background);
setMargin(7);
setAlignment(AlignLeft | AlignBottom);
- setPaletteForegroundColor(QColor(107, 158, 194));
+ setPaletteForegroundColor(TQColor(107, 158, 194));
- QFont f = font();
+ TQFont f = font();
f.setPixelSize(10);
setFont(f);