summaryrefslogtreecommitdiffstats
path: root/chalk/ui
diff options
context:
space:
mode:
Diffstat (limited to 'chalk/ui')
-rw-r--r--chalk/ui/imageviewer.cc2
-rw-r--r--chalk/ui/kis_view.cc2
-rw-r--r--chalk/ui/layerlist.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/chalk/ui/imageviewer.cc b/chalk/ui/imageviewer.cc
index b6d94ed9..cfe6905d 100644
--- a/chalk/ui/imageviewer.cc
+++ b/chalk/ui/imageviewer.cc
@@ -45,7 +45,7 @@ void ImageViewer::setImage(TQImage & image)
m_image = TQPixmap(image);
m_label->setPixmap(m_image);
resizeContents( m_image.width(), m_image.height() );
- tqrepaintContents(false);
+ repaintContents(false);
}
void ImageViewer::contentsMousePressEvent(TQMouseEvent *event)
diff --git a/chalk/ui/kis_view.cc b/chalk/ui/kis_view.cc
index a146ddcb..61966928 100644
--- a/chalk/ui/kis_view.cc
+++ b/chalk/ui/kis_view.cc
@@ -2236,7 +2236,7 @@ void KisView::paintToolOverlay(const TQRegion& region)
gc.setClipRegion(region);
gc.setClipping(true);
- // Prevent endless loop if the tool needs to have the canvas tqrepainted
+ // Prevent endless loop if the tool needs to have the canvas repainted
m_toolIsPainting = true;
m_toolManager->currentTool()->paint(gc, region.boundingRect());
m_toolIsPainting = false;
diff --git a/chalk/ui/layerlist.cpp b/chalk/ui/layerlist.cpp
index 976ec84d..886b27e4 100644
--- a/chalk/ui/layerlist.cpp
+++ b/chalk/ui/layerlist.cpp
@@ -1316,7 +1316,7 @@ void LayerItem::setSelected( bool selected )
LayerItem *LayerList::firstChild() const { return static_cast<LayerItem*>( super::firstChild() ); }
LayerItem *LayerList::lastChild() const { return static_cast<LayerItem*>( super::lastChild() ); }
LayerList *LayerItem::listView() const { return static_cast<LayerList*>( super::listView() ); }
-void LayerItem::update() const { listView()->tqrepaintItem( this ); }
+void LayerItem::update() const { listView()->repaintItem( this ); }
LayerItem *LayerItem::firstChild() const { return static_cast<LayerItem*>( super::firstChild() ); }
LayerItem *LayerItem::nextSibling() const { return static_cast<LayerItem*>( super::nextSibling() ); }
LayerItem *LayerItem::tqparent() const { return static_cast<LayerItem*>( super::tqparent() ); }