diff options
Diffstat (limited to 'karbon/tools/vroundrecttool.cc')
-rw-r--r-- | karbon/tools/vroundrecttool.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/karbon/tools/vroundrecttool.cc b/karbon/tools/vroundrecttool.cc index c88bacd8..b7f354cf 100644 --- a/karbon/tools/vroundrecttool.cc +++ b/karbon/tools/vroundrecttool.cc @@ -40,7 +40,7 @@ VRoundRectTool::VRoundRectOptionsWidget::VRoundRectOptionsWidget( KarbonPart *pa KoUnit::Unit unit = KoUnit::U_CM; m_width = new KoUnitDoubleSpinBox( group, 0.0, KoUnit::fromUserValue( 1000.0, unit ), KoUnit::fromUserValue( 0.5, unit ), KoUnit::fromUserValue( 10.0, unit ), unit ); - new TQLabel( i18n( "Height (%1):" ).arg(KoUnit::unitName( m_part->unit() )), group ); + new TQLabel( i18n( "Height (%1):" ).tqarg(KoUnit::unitName( m_part->unit() )), group ); m_height = new KoUnitDoubleSpinBox( group, 0.0, KoUnit::fromUserValue( 1000.0, unit ), KoUnit::fromUserValue( 0.5, unit ), KoUnit::fromUserValue( 10.0, unit ), unit ); new TQLabel( i18n( "Edge radius X:" ), group ); @@ -132,7 +132,7 @@ void VRoundRectTool::refreshUnit() } VPath* -VRoundRectTool::shape( bool interactive ) const +VRoundRectTool::tqshape( bool interactive ) const { if( interactive ) { @@ -172,7 +172,7 @@ VRoundRectTool::setup( KActionCollection *collection ) { m_action = new KRadioAction( i18n( "Round Rectangle Tool" ), "14_roundrect", TQt::SHIFT+TQt::Key_H, this, TQT_SLOT( activate() ), collection, name() ); m_action->setToolTip( i18n( "Round Rectangle" ) ); - m_action->setExclusiveGroup( "shapes" ); + m_action->setExclusiveGroup( "tqshapes" ); //m_ownAction = true; } } |