summaryrefslogtreecommitdiffstats
path: root/krita/core/kis_background.h
diff options
context:
space:
mode:
Diffstat (limited to 'krita/core/kis_background.h')
-rw-r--r--krita/core/kis_background.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/krita/core/kis_background.h b/krita/core/kis_background.h
index 59016ffb..f5b52903 100644
--- a/krita/core/kis_background.h
+++ b/krita/core/kis_background.h
@@ -18,7 +18,7 @@
#ifndef KIS_BACKGROUND_H_
#define KIS_BACKGROUND_H_
-#include <qimage.h>
+#include <tqimage.h>
#include <ksharedptr.h>
@@ -31,18 +31,18 @@ public:
// Paint the background pattern into the image, 'behind' the image
// contents. The coordinates are for the image's top-left corner
// in image space.
- void paintBackground(QImage image, int leftX, int topY);
+ void paintBackground(TQImage image, int leftX, int topY);
- void paintBackground(QImage image, const QRect& scaledImageRect, const QSize& scaledImageSize, const QSize& imageSize);
+ void paintBackground(TQImage image, const TQRect& scaledImageRect, const TQSize& scaledImageSize, const TQSize& imageSize);
// Returns the pattern tile.
- const QImage& patternTile() const;
+ const TQImage& patternTile() const;
protected:
static const int PATTERN_WIDTH = 32;
static const int PATTERN_HEIGHT = 32;
- QImage m_patternTile;
+ TQImage m_patternTile;
};
#endif // KIS_BACKGROUND_H_