summaryrefslogtreecommitdiffstats
path: root/karbon/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
commitafbfdc507bfaafc8824a9808311d57a9ece87510 (patch)
tree47be45bbd69c321ce79e14b683e59318748be9cb /karbon/widgets
parent880d042b2902fae8007f202dd35ad9330499867b (diff)
downloadkoffice-afbfdc507bfaafc8824a9808311d57a9ece87510.tar.gz
koffice-afbfdc507bfaafc8824a9808311d57a9ece87510.zip
Rename incorrect instances of tqrepaint[...] to repaint[...]
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1240369 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'karbon/widgets')
-rw-r--r--karbon/widgets/vcanvas.cc8
-rw-r--r--karbon/widgets/vcanvas.h4
2 files changed, 6 insertions, 6 deletions
diff --git a/karbon/widgets/vcanvas.cc b/karbon/widgets/vcanvas.cc
index 28b272ae..96db15d8 100644
--- a/karbon/widgets/vcanvas.cc
+++ b/karbon/widgets/vcanvas.cc
@@ -152,7 +152,7 @@ VCanvas::eventFilter( TQObject* object, TQEvent* event )
}
-// This causes a tqrepaint normally, so just overwriting it omits the tqrepainting
+// This causes a tqrepaint normally, so just overwriting it omits the repainting
void
VCanvas::focusInEvent( TQFocusEvent * )
{
@@ -328,14 +328,14 @@ VCanvas::drawDocument( TQPainter* /*painter*/, const KoRect&, bool drawVObjects
}
void
-VCanvas::tqrepaintAll( bool drawVObjects )
+VCanvas::repaintAll( bool drawVObjects )
{
drawDocument( 0, KoRect( 0, 0, width(), height() ), drawVObjects );
}
-/// tqrepaints just a rect area (no scrolling)
+/// repaints just a rect area (no scrolling)
void
-VCanvas::tqrepaintAll( const KoRect &r )
+VCanvas::repaintAll( const KoRect &r )
{
drawDocument( 0, r );
}
diff --git a/karbon/widgets/vcanvas.h b/karbon/widgets/vcanvas.h
index 09dc07d3..61d9b606 100644
--- a/karbon/widgets/vcanvas.h
+++ b/karbon/widgets/vcanvas.h
@@ -39,8 +39,8 @@ public:
VCanvas( TQWidget *tqparent, KarbonView* view, KarbonPart* part );
virtual ~VCanvas();
- void tqrepaintAll( const KoRect & );
- void tqrepaintAll( bool drawVObjects = true );
+ void repaintAll( const KoRect & );
+ void repaintAll( bool drawVObjects = true );
TQPixmap *pixmap() { return m_pixmap; }