summaryrefslogtreecommitdiffstats
path: root/asciiquarium/src/frame.h
diff options
context:
space:
mode:
Diffstat (limited to 'asciiquarium/src/frame.h')
-rw-r--r--asciiquarium/src/frame.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/asciiquarium/src/frame.h b/asciiquarium/src/frame.h
index a6ad82bd..915b58ca 100644
--- a/asciiquarium/src/frame.h
+++ b/asciiquarium/src/frame.h
@@ -28,9 +28,9 @@
#ifndef AA_FRAME_H
#define AA_FRAME_H
-#include <qstring.h>
-#include <qvaluevector.h>
-#include <qpixmap.h>
+#include <ntqstring.h>
+#include <ntqvaluevector.h>
+#include <ntqpixmap.h>
#include "screen.h"
/**
@@ -47,13 +47,13 @@ class Frame
*
* @see Pixel
*/
- QValueVector<QValueVector<Screen::Pixel> > m_data;
+ TQValueVector<TQValueVector<Screen::Pixel> > m_data;
/// Masked pixmap of the animation frame. Created by convertDataToPixmap().
- QPixmap m_pixmap;
+ TQPixmap m_pixmap;
/// Masked pixmap used to clear frame. Created by convertDataToPixmap().
- QPixmap m_erasePixmap;
+ TQPixmap m_erasePixmap;
/// Height of this frame of animation in logical coordinates.
int m_height;
@@ -63,7 +63,7 @@ class Frame
/// Character to be used as a special 'transparent' character. Normally is
/// the '?' character.
- QChar m_transparentChar;
+ TQChar m_transparentChar;
public:
@@ -100,7 +100,7 @@ public:
* auto-transparency feature can't detect transparent
* areas.
*/
- Frame(QString text, QString mask, QRgb defaultColor, QChar transparent = '?');
+ Frame(TQString text, TQString mask, TQRgb defaultColor, TQChar transparent = '?');
/**
* Paints this Frame into the given screen.