diff options
Diffstat (limited to 'karbon/plugins')
-rw-r--r-- | karbon/plugins/flattenpath/flattenpathplugin.cpp | 6 | ||||
-rw-r--r-- | karbon/plugins/imagetool/vimagetool.cpp | 2 | ||||
-rw-r--r-- | karbon/plugins/insertknots/insertknotsplugin.cpp | 6 | ||||
-rw-r--r-- | karbon/plugins/roundcorners/roundcornersplugin.cpp | 6 | ||||
-rw-r--r-- | karbon/plugins/shadoweffect/shadoweffectplugin.cpp | 6 | ||||
-rw-r--r-- | karbon/plugins/whirlpinch/whirlpinchplugin.cpp | 6 | ||||
-rw-r--r-- | karbon/plugins/zoomtool/vzoomtool.cpp | 2 |
7 files changed, 17 insertions, 17 deletions
diff --git a/karbon/plugins/flattenpath/flattenpathplugin.cpp b/karbon/plugins/flattenpath/flattenpathplugin.cpp index 4dbb2b5e..a19b3f2f 100644 --- a/karbon/plugins/flattenpath/flattenpathplugin.cpp +++ b/karbon/plugins/flattenpath/flattenpathplugin.cpp @@ -38,7 +38,7 @@ FlattenPathPlugin::FlattenPathPlugin( KarbonView *parent, const char* name, cons { new TDEAction( i18n( "&Flatten Path..." ), "14_flatten", 0, this, - TQT_SLOT( slotFlattenPath() ), actionCollection(), "path_flatten" ); + TQ_SLOT( slotFlattenPath() ), actionCollection(), "path_flatten" ); m_flattenPathDlg = new VFlattenDlg(); m_flattenPathDlg->setFlatness( 0.2 ); @@ -62,8 +62,8 @@ VFlattenDlg::VFlattenDlg( TQWidget* parent, const char* name ) group->setMinimumWidth( 300 ); // signals and slots: - connect( this, TQT_SIGNAL( okClicked() ), this, TQT_SLOT( accept() ) ); - connect( this, TQT_SIGNAL( cancelClicked() ), this, TQT_SLOT( reject() ) ); + connect( this, TQ_SIGNAL( okClicked() ), this, TQ_SLOT( accept() ) ); + connect( this, TQ_SIGNAL( cancelClicked() ), this, TQ_SLOT( reject() ) ); setMainWidget( group ); setFixedSize( baseSize() ); diff --git a/karbon/plugins/imagetool/vimagetool.cpp b/karbon/plugins/imagetool/vimagetool.cpp index 749e07a1..000aa776 100644 --- a/karbon/plugins/imagetool/vimagetool.cpp +++ b/karbon/plugins/imagetool/vimagetool.cpp @@ -123,7 +123,7 @@ VImageTool::setup( TDEActionCollection *collection ) if( m_action == 0 ) { - m_action = new TDERadioAction( i18n( "Image Tool" ), "14_image", TQt::SHIFT+TQt::Key_H, this, TQT_SLOT( activate() ), collection, name() ); + m_action = new TDERadioAction( i18n( "Image Tool" ), "14_image", TQt::SHIFT+TQt::Key_H, this, TQ_SLOT( activate() ), collection, name() ); m_action->setToolTip( i18n( "Image" ) ); m_action->setExclusiveGroup( "misc" ); //m_ownAction = true; diff --git a/karbon/plugins/insertknots/insertknotsplugin.cpp b/karbon/plugins/insertknots/insertknotsplugin.cpp index a40b65da..dcf8ef85 100644 --- a/karbon/plugins/insertknots/insertknotsplugin.cpp +++ b/karbon/plugins/insertknots/insertknotsplugin.cpp @@ -37,7 +37,7 @@ InsertKnotsPlugin::InsertKnotsPlugin( KarbonView *parent, const char* name, cons { new TDEAction( i18n( "&Insert Knots..." ), "14_insertknots", 0, this, - TQT_SLOT( slotInsertKnots() ), actionCollection(), "path_insert_knots" ); + TQ_SLOT( slotInsertKnots() ), actionCollection(), "path_insert_knots" ); m_insertKnotsDlg = new VInsertKnotsDlg(); } @@ -62,8 +62,8 @@ VInsertKnotsDlg::VInsertKnotsDlg( TQWidget* parent, const char* name ) group->setMinimumWidth( 300 ); // signals and slots: - connect( this, TQT_SIGNAL( okClicked() ), this, TQT_SLOT( accept() ) ); - connect( this, TQT_SIGNAL( cancelClicked() ), this, TQT_SLOT( reject() ) ); + connect( this, TQ_SIGNAL( okClicked() ), this, TQ_SLOT( accept() ) ); + connect( this, TQ_SIGNAL( cancelClicked() ), this, TQ_SLOT( reject() ) ); setMainWidget( group ); setFixedSize( baseSize() ); diff --git a/karbon/plugins/roundcorners/roundcornersplugin.cpp b/karbon/plugins/roundcorners/roundcornersplugin.cpp index f703728f..fc435a43 100644 --- a/karbon/plugins/roundcorners/roundcornersplugin.cpp +++ b/karbon/plugins/roundcorners/roundcornersplugin.cpp @@ -36,7 +36,7 @@ VRoundCornersPlugin::VRoundCornersPlugin( KarbonView *parent, const char* name, { new TDEAction( i18n( "&Round Corners..." ), "14_roundcorners", 0, this, - TQT_SLOT( slotRoundCorners() ), actionCollection(), "path_round_corners" ); + TQ_SLOT( slotRoundCorners() ), actionCollection(), "path_round_corners" ); m_roundCornersDlg = new VRoundCornersDlg(); m_roundCornersDlg->setRadius( 10.0 ); @@ -66,8 +66,8 @@ VRoundCornersDlg::VRoundCornersDlg( TQWidget* parent, const char* name ) group->setMinimumWidth( 300 ); // signals and slots: - connect( this, TQT_SIGNAL( okClicked() ), this, TQT_SLOT( accept() ) ); - connect( this, TQT_SIGNAL( cancelClicked() ), this, TQT_SLOT( reject() ) ); + connect( this, TQ_SIGNAL( okClicked() ), this, TQ_SLOT( accept() ) ); + connect( this, TQ_SIGNAL( cancelClicked() ), this, TQ_SLOT( reject() ) ); setMainWidget( group ); setFixedSize( baseSize() ); diff --git a/karbon/plugins/shadoweffect/shadoweffectplugin.cpp b/karbon/plugins/shadoweffect/shadoweffectplugin.cpp index 04d6ae68..25920691 100644 --- a/karbon/plugins/shadoweffect/shadoweffectplugin.cpp +++ b/karbon/plugins/shadoweffect/shadoweffectplugin.cpp @@ -42,7 +42,7 @@ ShadowEffectPlugin::ShadowEffectPlugin( KarbonView *parent, const char* name, co { new TDEAction( i18n( "&Shadow Effect..." ), "shadowRB", 0, this, - TQT_SLOT( slotShadowEffect() ), actionCollection(), "object_shadow" ); + TQ_SLOT( slotShadowEffect() ), actionCollection(), "object_shadow" ); m_shadowEffectDlg = new VShadowEffectDlg(); m_shadowEffectDlg->setDistance( 2 ); @@ -78,8 +78,8 @@ VShadowEffectDlg::VShadowEffectDlg( TQWidget* parent, const char* name ) m_opacity->setSuffix(i18n("%")); // signals and slots: - connect( this, TQT_SIGNAL( okClicked() ), this, TQT_SLOT( accept() ) ); - connect( this, TQT_SIGNAL( cancelClicked() ), this, TQT_SLOT( reject() ) ); + connect( this, TQ_SIGNAL( okClicked() ), this, TQ_SLOT( accept() ) ); + connect( this, TQ_SIGNAL( cancelClicked() ), this, TQ_SLOT( reject() ) ); setMainWidget( group ); } diff --git a/karbon/plugins/whirlpinch/whirlpinchplugin.cpp b/karbon/plugins/whirlpinch/whirlpinchplugin.cpp index d4565752..13b2afe5 100644 --- a/karbon/plugins/whirlpinch/whirlpinchplugin.cpp +++ b/karbon/plugins/whirlpinch/whirlpinchplugin.cpp @@ -42,7 +42,7 @@ WhirlPinchPlugin::WhirlPinchPlugin( KarbonView *parent, const char* name, const { new TDEAction( i18n( "&Whirl/Pinch..." ), "14_whirl", 0, this, - TQT_SLOT( slotWhirlPinch() ), actionCollection(), "path_whirlpinch" ); + TQ_SLOT( slotWhirlPinch() ), actionCollection(), "path_whirlpinch" ); m_whirlPinchDlg = new VWhirlPinchDlg(); m_whirlPinchDlg->setAngle( 20.0 ); @@ -73,8 +73,8 @@ VWhirlPinchDlg::VWhirlPinchDlg( TQWidget* parent, const char* name ) group->setMinimumWidth( 300 ); // signals and slots: - connect( this, TQT_SIGNAL( okClicked() ), this, TQT_SLOT( accept() ) ); - connect( this, TQT_SIGNAL( cancelClicked() ), this, TQT_SLOT( reject() ) ); + connect( this, TQ_SIGNAL( okClicked() ), this, TQ_SLOT( accept() ) ); + connect( this, TQ_SIGNAL( cancelClicked() ), this, TQ_SLOT( reject() ) ); setMainWidget( group ); setFixedSize( baseSize() ); diff --git a/karbon/plugins/zoomtool/vzoomtool.cpp b/karbon/plugins/zoomtool/vzoomtool.cpp index 1cecb94a..cbd15d17 100644 --- a/karbon/plugins/zoomtool/vzoomtool.cpp +++ b/karbon/plugins/zoomtool/vzoomtool.cpp @@ -161,7 +161,7 @@ VZoomTool::setup( TDEActionCollection *collection ) if( m_action == 0 ) { - m_action = new TDERadioAction( i18n( "Zoom Tool" ), "14_zoom", TQt::SHIFT+TQt::Key_H, this, TQT_SLOT( activate() ), collection, name() ); + m_action = new TDERadioAction( i18n( "Zoom Tool" ), "14_zoom", TQt::SHIFT+TQt::Key_H, this, TQ_SLOT( activate() ), collection, name() ); m_action->setToolTip( i18n( "Zoom" ) ); m_action->setExclusiveGroup( "misc" ); //m_ownAction = true; |