diff options
Diffstat (limited to 'karbon/tools/vpolylinetool.cpp')
-rw-r--r-- | karbon/tools/vpolylinetool.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/karbon/tools/vpolylinetool.cpp b/karbon/tools/vpolylinetool.cpp index 38ac9d25..8e533416 100644 --- a/karbon/tools/vpolylinetool.cpp +++ b/karbon/tools/vpolylinetool.cpp @@ -76,7 +76,7 @@ VPolylineTool::activate() m_bezierPoints.clear(); m_close = false; - connect( view()->part()->commandHistory(), TQT_SIGNAL(commandExecuted()), this, TQT_SLOT(commandExecuted()) ); + connect( view()->part()->commandHistory(), TQ_SIGNAL(commandExecuted()), this, TQ_SLOT(commandExecuted()) ); } void @@ -145,7 +145,7 @@ VPolylineTool::deactivate() createObject(); - disconnect( view()->part()->commandHistory(), TQT_SIGNAL(commandExecuted()), this, TQT_SLOT(commandExecuted()) ); + disconnect( view()->part()->commandHistory(), TQ_SIGNAL(commandExecuted()), this, TQ_SLOT(commandExecuted()) ); } void @@ -488,7 +488,7 @@ VPolylineTool::setup( TDEActionCollection *collection ) { TDEShortcut shortcut( TQt::Key_Plus ); shortcut.append( TDEShortcut( TQt::Key_F9 ) ); - m_action = new TDERadioAction( i18n( "Polyline Tool" ), "14_polyline", shortcut, this, TQT_SLOT( activate() ), collection, name() ); + m_action = new TDERadioAction( i18n( "Polyline Tool" ), "14_polyline", shortcut, this, TQ_SLOT( activate() ), collection, name() ); m_action->setToolTip( i18n( "Polyline" ) ); m_action->setExclusiveGroup( "freehand" ); //m_ownAction = true; |