summaryrefslogtreecommitdiffstats
path: root/krita/plugins/viewplugins/histogram_docker/kis_imagerasteredcache.cc
diff options
context:
space:
mode:
Diffstat (limited to 'krita/plugins/viewplugins/histogram_docker/kis_imagerasteredcache.cc')
-rw-r--r--krita/plugins/viewplugins/histogram_docker/kis_imagerasteredcache.cc22
1 files changed, 11 insertions, 11 deletions
diff --git a/krita/plugins/viewplugins/histogram_docker/kis_imagerasteredcache.cc b/krita/plugins/viewplugins/histogram_docker/kis_imagerasteredcache.cc
index 2c6562df..19599cd9 100644
--- a/krita/plugins/viewplugins/histogram_docker/kis_imagerasteredcache.cc
+++ b/krita/plugins/viewplugins/histogram_docker/kis_imagerasteredcache.cc
@@ -20,7 +20,7 @@
#include <cmath>
-#include <qapplication.h>
+#include <tqapplication.h>
#include <kdebug.h>
@@ -47,21 +47,21 @@ KisImageRasteredCache::KisImageRasteredCache(KisView* view, Observer* o)
imageSizeChanged(img->width(), img->height());
- connect(img, SIGNAL(sigImageUpdated(QRect)),
- this, SLOT(imageUpdated(QRect)));
- connect(img, SIGNAL(sigSizeChanged(Q_INT32, Q_INT32)),
- this, SLOT(imageSizeChanged(Q_INT32, Q_INT32)));
- connect(&m_timer, SIGNAL(timeout()), this, SLOT(timeOut()));
+ connect(img, TQT_SIGNAL(sigImageUpdated(TQRect)),
+ this, TQT_SLOT(imageUpdated(TQRect)));
+ connect(img, TQT_SIGNAL(sigSizeChanged(TQ_INT32, TQ_INT32)),
+ this, TQT_SLOT(imageSizeChanged(TQ_INT32, TQ_INT32)));
+ connect(&m_timer, TQT_SIGNAL(timeout()), this, TQT_SLOT(timeOut()));
}
KisImageRasteredCache::~KisImageRasteredCache() {
cleanUpElements();
}
-void KisImageRasteredCache::imageUpdated(QRect rc) {
+void KisImageRasteredCache::imageUpdated(TQRect rc) {
if (rc.isValid()) {
- QRect r(0, 0, m_width * m_rasterSize, m_height * m_rasterSize);
+ TQRect r(0, 0, m_width * m_rasterSize, m_height * m_rasterSize);
r &= rc;
uint x = static_cast<int>(r.x() / m_rasterSize);
@@ -93,7 +93,7 @@ void KisImageRasteredCache::imageUpdated(QRect rc) {
}
}
-void KisImageRasteredCache::imageSizeChanged(Q_INT32 w, Q_INT32 h) {
+void KisImageRasteredCache::imageSizeChanged(TQ_INT32 w, TQ_INT32 h) {
KisImageSP image = m_view->canvasSubject()->currentImg();
@@ -120,7 +120,7 @@ void KisImageRasteredCache::imageSizeChanged(Q_INT32 w, Q_INT32 h) {
rasterX++;
}
- imageUpdated(QRect(0,0, image->width(), image->height()));
+ imageUpdated(TQRect(0,0, image->width(), image->height()));
}
void KisImageRasteredCache::timeOut() {
@@ -140,7 +140,7 @@ void KisImageRasteredCache::timeOut() {
// If there are still elements, we need to be called again (this emulates processEvents)
if (!m_queue.isEmpty()) {
- QTimer::singleShot(0, this, SLOT(timeOut()));
+ TQTimer::singleShot(0, this, TQT_SLOT(timeOut()));
} else {
emit cacheUpdated();
m_imageProjection = 0;