summaryrefslogtreecommitdiffstats
path: root/kdeui/tests/kprogresstest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdeui/tests/kprogresstest.cpp')
-rw-r--r--kdeui/tests/kprogresstest.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kdeui/tests/kprogresstest.cpp b/kdeui/tests/kprogresstest.cpp
index d748fcb0f..7b7024135 100644
--- a/kdeui/tests/kprogresstest.cpp
+++ b/kdeui/tests/kprogresstest.cpp
@@ -1,11 +1,11 @@
#include <kapplication.h>
-#include <qwidget.h>
+#include <tqwidget.h>
#include "kprogress.h"
-class MyWidget : public QWidget {
+class MyWidget : public TQWidget {
public:
- MyWidget() : QWidget()
+ MyWidget() : TQWidget()
{
setFixedSize(440, 80);
Progress = new KProgress(this);
@@ -17,10 +17,10 @@ public:
private:
KProgress *Progress;
- void timerEvent(QTimerEvent *);
+ void timerEvent(TQTimerEvent *);
};
-void MyWidget::timerEvent(QTimerEvent *)
+void MyWidget::timerEvent(TQTimerEvent *)
{
static enum { fwd, back } direction = fwd;
//static KProgress::BarStyle style = KProgress::Solid;