summaryrefslogtreecommitdiffstats
path: root/src/gvcore/imageframe.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gvcore/imageframe.h')
-rw-r--r--src/gvcore/imageframe.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/gvcore/imageframe.h b/src/gvcore/imageframe.h
index 13d4854..1ff3c33 100644
--- a/src/gvcore/imageframe.h
+++ b/src/gvcore/imageframe.h
@@ -21,21 +21,21 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#ifndef IMAGEFRAME_H
#define IMAGEFRAME_H
-// Qt
-#include <qimage.h>
-#include <qvaluevector.h>
+// TQt
+#include <tqimage.h>
+#include <tqvaluevector.h>
namespace Gwenview {
// Local
struct ImageFrame {
- ImageFrame( const QImage& i, int d ) : image( i ), delay( d ) {};
- ImageFrame() : delay( 0 ) {} // stupid Qt containers
- QImage image;
+ ImageFrame( const TQImage& i, int d ) : image( i ), delay( d ) {};
+ ImageFrame() : delay( 0 ) {} // stupid TQt containers
+ TQImage image;
int delay; // how long this frame should be shown in the animation
};
-typedef QValueVector< ImageFrame > ImageFrames;
+typedef TQValueVector< ImageFrame > ImageFrames;
} // namespace
#endif /* IMAGEFRAME_H */