diff options
author | Timothy Pearson <[email protected]> | 2011-12-15 15:32:11 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-12-15 15:32:11 -0600 |
commit | 94844816550ad672ccfcdc25659c625546239998 (patch) | |
tree | e35fc60fd736c645d59f6408af032774ad8023d3 /karbon/tools/vshapetool.cc | |
parent | 2a811c38c74c03648ecf857e566c44483cbad706 (diff) | |
download | koffice-94844816550ad672ccfcdc25659c625546239998.tar.gz koffice-94844816550ad672ccfcdc25659c625546239998.zip |
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'karbon/tools/vshapetool.cc')
-rw-r--r-- | karbon/tools/vshapetool.cc | 10 |
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 ); |