summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/printwizard/cropframe.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/printwizard/cropframe.cpp')
-rw-r--r--kipi-plugins/printwizard/cropframe.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kipi-plugins/printwizard/cropframe.cpp b/kipi-plugins/printwizard/cropframe.cpp
index 4f9cf2e..b92c392 100644
--- a/kipi-plugins/printwizard/cropframe.cpp
+++ b/kipi-plugins/printwizard/cropframe.cpp
@@ -118,7 +118,7 @@ void CropFrame::init(TPhoto *photo, int width, int height, bool autoRotate, bool
m_cropRegion = _photoToScreenRect(m_photo->cropRegion);
if (paint)
- tqrepaint(false);
+ repaint(false);
}
TQRect CropFrame::_screenToPhotoRect(TQRect r)
@@ -263,7 +263,7 @@ void CropFrame::mouseMoveEvent(TQMouseEvent *e)
m_cropRegion.setRect(newX, newY, newW, newH);
m_photo->cropRegion = _screenToPhotoRect(m_cropRegion);
- tqrepaint(false);
+ repaint(false);
}
}
@@ -295,14 +295,14 @@ void CropFrame::keyPressEvent(TQKeyEvent *e)
m_cropRegion.setRect(newX, newY, w, h);
m_photo->cropRegion = _screenToPhotoRect(m_cropRegion);
- tqrepaint(false);
+ repaint(false);
}
void CropFrame::setColor(TQColor c)
{
m_color = c;
- tqrepaint(false);
+ repaint(false);
}
TQColor CropFrame::color()