summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-07 21:14:06 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-07-07 21:14:06 +0000
commitbcbc2b2a3e3aa0997c0f11e0bd090b8bac6732c2 (patch)
tree86e8b8d10ef680ea74d905da3b5761cf919d056e
parent87ab06cc6b808ae03f47cd17897c888b203d2d05 (diff)
downloadkipi-plugins-bcbc2b2a.tar.gz
kipi-plugins-bcbc2b2a.zip
Rename incorrect instances of tqrepaint[...] to repaint[...]
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/libraries/kipi-plugins@1240369 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rw-r--r--kipi-plugins/batchprocessimages/imagepreview.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kipi-plugins/batchprocessimages/imagepreview.cpp b/kipi-plugins/batchprocessimages/imagepreview.cpp
index e990595..edb3b5b 100644
--- a/kipi-plugins/batchprocessimages/imagepreview.cpp
+++ b/kipi-plugins/batchprocessimages/imagepreview.cpp
@@ -324,7 +324,7 @@ void PixmapView::PreviewProcessDone(KProcess* proc)
p.drawText(0, 0, m_pix->width(), m_pix->height(), TQt::AlignCenter,
i18n("Cannot\nprocess\npreview\nimage."));
p.end();
- tqrepaintContents();
+ repaintContents();
m_validPreview = false;
}
}
@@ -340,7 +340,7 @@ void PixmapView::resizeImage(int ZoomFactor)
TQImage imgTmp = m_img.scale(w, h);
m_pix->convertFromImage(imgTmp);
resizeContents(w, h);
- tqrepaintContents(false);
+ repaintContents(false);
}
void PixmapView::drawContents(TQPainter *p, int x, int y, int w, int h)