summaryrefslogtreecommitdiffstats
path: root/src/modules/notifier/notifierwindowprogressbar.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/notifier/notifierwindowprogressbar.h')
-rw-r--r--src/modules/notifier/notifierwindowprogressbar.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/modules/notifier/notifierwindowprogressbar.h b/src/modules/notifier/notifierwindowprogressbar.h
index ec527d2e..cba33e59 100644
--- a/src/modules/notifier/notifierwindowprogressbar.h
+++ b/src/modules/notifier/notifierwindowprogressbar.h
@@ -24,13 +24,13 @@
//
//=============================================================================
-#include <qrect.h>
-#include <qpainter.h>
+#include <tqrect.h>
+#include <tqpainter.h>
class KviNotifierWindowProgressBar
{
public:
- KviNotifierWindowProgressBar(QRect r);
+ KviNotifierWindowProgressBar(TQRect r);
~KviNotifierWindowProgressBar();
// ================================
@@ -41,7 +41,7 @@ private:
public:
protected:
- QRect m_rect;
+ TQRect m_rect;
double m_dProgress;
// ================================
@@ -57,7 +57,7 @@ public:
void setHeight(int p_iHeight) { m_rect.setHeight(p_iHeight); };
void setProgress(double progress) { m_dProgress=progress; };
- void draw(QPainter *);
+ void draw(TQPainter *);
protected: