From bcbc2b2a3e3aa0997c0f11e0bd090b8bac6732c2 Mon Sep 17 00:00:00 2001 From: tpearson Date: Thu, 7 Jul 2011 21:14:06 +0000 Subject: [PATCH] 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 --- kipi-plugins/batchprocessimages/imagepreview.cpp | 4 ++-- 1 file 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)