summaryrefslogtreecommitdiffstats
path: root/karbon/tools/vtexttool.cc
diff options
context:
space:
mode:
Diffstat (limited to 'karbon/tools/vtexttool.cc')
-rw-r--r--karbon/tools/vtexttool.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/karbon/tools/vtexttool.cc b/karbon/tools/vtexttool.cc
index ace6c8ce..fda8e9fe 100644
--- a/karbon/tools/vtexttool.cc
+++ b/karbon/tools/vtexttool.cc
@@ -657,7 +657,7 @@ void
VTextTool::drawEditedText()
{
if( m_editedText )
- view()->tqrepaintAll( m_editedText->boundingBox() );
+ view()->repaintAll( m_editedText->boundingBox() );
}
void
@@ -795,10 +795,10 @@ VTextTool::textChanged()
{
// hide the original text if we are changing it
m_text->setState( VObject::hidden );
- view()->tqrepaintAll( m_text->boundingBox() );
+ view()->repaintAll( m_text->boundingBox() );
}
else
- view()->tqrepaintAll( m_editedText->boundingBox() );
+ view()->repaintAll( m_editedText->boundingBox() );
m_editedText->setText( m_optionsWidget->text() );
m_editedText->setFont( m_optionsWidget->font() );
@@ -853,7 +853,7 @@ VTextTool::accept()
}
view()->part()->addCommand( cmd, true );
- view()->part()->tqrepaintAllViews();
+ view()->part()->repaintAllViews();
m_creating = false;
}
@@ -864,7 +864,7 @@ VTextTool::cancel()
{
// show original text if we canceled changing it
m_text->setState( VObject::selected );
- view()->tqrepaintAll( m_text->boundingBox() );
+ view()->repaintAll( m_text->boundingBox() );
}
else
drawPathCreation();
@@ -881,7 +881,7 @@ VTextTool::editBasePath()
view()->part()->document().selection()->clear();
view()->part()->document().selection()->append( &m_editedText->basePath() );
- view()->part()->tqrepaintAllViews();
+ view()->part()->repaintAllViews();
}
void