summaryrefslogtreecommitdiffstats
path: root/digikam/libs/widgets
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
commitba7aa20da1ad2514fb277767d695ed1b17c932f0 (patch)
tree1e9c9891efe0c0ba4cd843de867c7773e639efd5 /digikam/libs/widgets
parentc7d4eaea9278efab7db9f0213e7793f673db7d97 (diff)
downloaddigikam-ba7aa20da1ad2514fb277767d695ed1b17c932f0.tar.gz
digikam-ba7aa20da1ad2514fb277767d695ed1b17c932f0.zip
Rename incorrect instances of tqrepaint[...] to repaint[...]
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/digikam@1240369 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'digikam/libs/widgets')
-rw-r--r--digikam/libs/widgets/common/histogramwidget.cpp2
-rw-r--r--digikam/libs/widgets/imageplugins/imagepanelwidget.cpp2
-rw-r--r--digikam/libs/widgets/imageplugins/imageregionwidget.cpp2
-rw-r--r--digikam/libs/widgets/metadata/worldmapwidget.cpp4
4 files changed, 5 insertions, 5 deletions
diff --git a/digikam/libs/widgets/common/histogramwidget.cpp b/digikam/libs/widgets/common/histogramwidget.cpp
index 4e8f242..3bb49d4 100644
--- a/digikam/libs/widgets/common/histogramwidget.cpp
+++ b/digikam/libs/widgets/common/histogramwidget.cpp
@@ -244,7 +244,7 @@ void HistogramWidget::customEvent(TQCustomEvent *event)
setCursor( KCursor::arrowCursor() );
// Send signals to refresh information if necessary.
- // The signals may trigger multiple tqrepaints, avoid this,
+ // The signals may trigger multiple repaints, avoid this,
// we tqrepaint once afterwards.
setUpdatesEnabled(false);
diff --git a/digikam/libs/widgets/imageplugins/imagepanelwidget.cpp b/digikam/libs/widgets/imageplugins/imagepanelwidget.cpp
index 62626ea..d066622 100644
--- a/digikam/libs/widgets/imageplugins/imagepanelwidget.cpp
+++ b/digikam/libs/widgets/imageplugins/imagepanelwidget.cpp
@@ -311,7 +311,7 @@ DImg ImagePanelWidget::getOriginalRegionImage()
void ImagePanelWidget::setPreviewImage(DImg img)
{
d->imageRegionWidget->updatePreviewImage(&img);
- d->imageRegionWidget->tqrepaintContents(false);
+ d->imageRegionWidget->repaintContents(false);
}
void ImagePanelWidget::setCenterImageRegionPosition()
diff --git a/digikam/libs/widgets/imageplugins/imageregionwidget.cpp b/digikam/libs/widgets/imageplugins/imageregionwidget.cpp
index c44e482..470a908 100644
--- a/digikam/libs/widgets/imageplugins/imageregionwidget.cpp
+++ b/digikam/libs/widgets/imageplugins/imageregionwidget.cpp
@@ -154,7 +154,7 @@ void ImageRegionWidget::paintPreview(TQPixmap *pix, int sx, int sy, int sw, int
void ImageRegionWidget::setHighLightPoints(const TQPointArray& pointsList)
{
d->hightlightPoints = pointsList;
- tqrepaintContents(false);
+ repaintContents(false);
}
void ImageRegionWidget::slotZoomFactorChanged()
diff --git a/digikam/libs/widgets/metadata/worldmapwidget.cpp b/digikam/libs/widgets/metadata/worldmapwidget.cpp
index ee7494a..73c3fb4 100644
--- a/digikam/libs/widgets/metadata/worldmapwidget.cpp
+++ b/digikam/libs/widgets/metadata/worldmapwidget.cpp
@@ -143,7 +143,7 @@ void WorldMapWidget::setGPSPosition(double lat, double lng)
d->xPos = (int)(longMid + longOffset);
d->yPos = (int)(latMid - latOffset);
- tqrepaintContents(false);
+ repaintContents(false);
center(d->xPos, d->yPos);
TQString la, lo;
@@ -197,7 +197,7 @@ void WorldMapWidget::contentsMouseMoveEvent( TQMouseEvent * e )
uint newypos = e->y();
scrollBy (-(newxpos - d->xMousePos), -(newypos - d->yMousePos));
- tqrepaintContents(false);
+ repaintContents(false);
d->xMousePos = newxpos - (newxpos-d->xMousePos);
d->yMousePos = newypos - (newypos-d->yMousePos);