summaryrefslogtreecommitdiffstats
path: root/src/splashscreen.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/splashscreen.h')
-rw-r--r--src/splashscreen.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/splashscreen.h b/src/splashscreen.h
index 15114f3f..5fa6bc07 100644
--- a/src/splashscreen.h
+++ b/src/splashscreen.h
@@ -2,9 +2,9 @@
#ifndef _SPLASHSCREEN_H_
#define _SPLASHSCREEN_H_
-#include <qsplashscreen.h>
-#include <qpainter.h>
-#include <qlabel.h>
+#include <tqsplashscreen.h>
+#include <tqpainter.h>
+#include <tqlabel.h>
class QPixmap;
@@ -16,21 +16,21 @@ class KDevSplashScreen : public QSplashScreen
Q_OBJECT
public:
- KDevSplashScreen(const QPixmap& pixmap, WFlags f = 0);
+ KDevSplashScreen(const TQPixmap& pixmap, WFlags f = 0);
virtual ~KDevSplashScreen();
protected:
- void drawContents (QPainter * painter);
+ void drawContents (TQPainter * painter);
public slots:
void animate();
- void message( const QString &str, int flags = AlignLeft,
- const QColor &color = black );
+ void message( const TQString &str, int flags = AlignLeft,
+ const TQColor &color = black );
private:
int state;
int progress_bar_size;
- QString m_string;
+ TQString m_string;
};