summaryrefslogtreecommitdiffstats
path: root/kmilo/kmilod/defaultskin.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:52:55 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:52:55 +0000
commit5f5ee2367157176ed223b86343eb0a9e4022e020 (patch)
tree6a9c87f14ee38e90eff3c77c784f14e4f38fd5a1 /kmilo/kmilod/defaultskin.h
parent4facf42feec57b22dcf46badc115ad6c5b5cc512 (diff)
downloadtdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.tar.gz
tdeutils-5f5ee2367157176ed223b86343eb0a9e4022e020.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1157653 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmilo/kmilod/defaultskin.h')
-rw-r--r--kmilo/kmilod/defaultskin.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/kmilo/kmilod/defaultskin.h b/kmilo/kmilod/defaultskin.h
index 1610152..62bea16 100644
--- a/kmilo/kmilod/defaultskin.h
+++ b/kmilo/kmilod/defaultskin.h
@@ -23,14 +23,14 @@
#ifndef _DEFAULTSKIN_H_
#define _DEFAULTSKIN_H_
-#include <qstring.h>
-#include <qobject.h>
-#include <qtimer.h>
+#include <tqstring.h>
+#include <tqobject.h>
+#include <tqtimer.h>
#include "displayskin.h"
class DefaultWidget;
-class DefaultSkin : public QObject, public KMilo::DisplaySkin {
+class DefaultSkin : public TQObject, public KMilo::DisplaySkin {
Q_OBJECT
public:
DefaultSkin();
@@ -39,9 +39,9 @@ class DefaultSkin : public QObject, public KMilo::DisplaySkin {
virtual void clear();
virtual void reconfigure( KConfig *config );
- virtual void displayText(const QString& text, const QPixmap& customPixmap=QPixmap());
- virtual void displayProgress(const QString& text,
- int percent, const QPixmap& customPixmap=QPixmap());
+ virtual void displayText(const TQString& text, const TQPixmap& customPixmap=TQPixmap());
+ virtual void displayProgress(const TQString& text,
+ int percent, const TQPixmap& customPixmap=TQPixmap());
private slots:
void timeout();
@@ -50,7 +50,7 @@ class DefaultSkin : public QObject, public KMilo::DisplaySkin {
void show();
DefaultWidget *_widget;
- QTimer _timer;
+ TQTimer _timer;
};