summaryrefslogtreecommitdiffstats
path: root/ktuberling/todraw.h
diff options
context:
space:
mode:
Diffstat (limited to 'ktuberling/todraw.h')
-rw-r--r--ktuberling/todraw.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/ktuberling/todraw.h b/ktuberling/todraw.h
index 4e46200a..a2753da3 100644
--- a/ktuberling/todraw.h
+++ b/ktuberling/todraw.h
@@ -8,7 +8,7 @@
#ifndef _TODRAW_H_
#define _TODRAW_H_
-#include <qrect.h>
+#include <tqrect.h>
#include <stdio.h>
@@ -17,19 +17,19 @@ class ToDraw
public:
ToDraw();
ToDraw(const ToDraw &);
- ToDraw(int, const QRect &);
+ ToDraw(int, const TQRect &);
ToDraw &operator=(const ToDraw &);
- void draw(QPainter &, const QRect &, const QRect *, const QPixmap *, const QBitmap *) const;
+ void draw(TQPainter &, const TQRect &, const TQRect *, const TQPixmap *, const TQBitmap *) const;
void save(FILE *) const;
bool load(FILE *, int, bool &);
inline int getNumber() const { return number; }
inline void setNumber(int newValue) { number = newValue; }
- inline const QRect &getPosition() const { return position; }
+ inline const TQRect &getPosition() const { return position; }
private:
int number;
- QRect position;
+ TQRect position;
};
#endif