summaryrefslogtreecommitdiffstats
path: root/karbon/tools/vshapetool.cc
diff options
context:
space:
mode:
Diffstat (limited to 'karbon/tools/vshapetool.cc')
-rw-r--r--karbon/tools/vshapetool.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/karbon/tools/vshapetool.cc b/karbon/tools/vshapetool.cc
index 49197773..9b59104d 100644
--- a/karbon/tools/vshapetool.cc
+++ b/karbon/tools/vshapetool.cc
@@ -52,8 +52,8 @@ TQString
VShapeTool::contextHelp()
{
TQString s = i18n( "<qt><b>Shape tool</b><br>" );
- s += i18n( "<i>Click and drag</i> to place your own tqshape.<br>" );
- s += i18n( "<i>Click</i> to place a tqshape using the tool properties values.</qt>" );
+ s += i18n( "<i>Click and drag</i> to place your own shape.<br>" );
+ s += i18n( "<i>Click</i> to place a shape using the tool properties values.</qt>" );
return s;
}
@@ -77,7 +77,7 @@ VShapeTool::draw()
VPainter* painter = view()->painterFactory()->editpainter();
painter->setRasterOp( TQt::NotROP );
- VPath* composite = tqshape();
+ VPath* composite = shape();
composite->setState( VPath::edit );
composite->draw( painter, &composite->boundingBox() );
delete( composite );
@@ -101,7 +101,7 @@ VShapeTool::mouseButtonRelease()
if( showDialog() )
{
- VPath* composite = tqshape( true );
+ VPath* composite = shape( true );
if( composite )
{
@@ -136,7 +136,7 @@ VShapeTool::mouseDragRelease()
VShapeCmd* cmd = new VShapeCmd(
&view()->part()->document(),
- uiname(), tqshape(), icon() );
+ uiname(), shape(), icon() );
view()->part()->addCommand( cmd, true );