summaryrefslogtreecommitdiffstats
path: root/buildtools/autotools/autotoolsaction.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'buildtools/autotools/autotoolsaction.cpp')
-rw-r--r--buildtools/autotools/autotoolsaction.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/buildtools/autotools/autotoolsaction.cpp b/buildtools/autotools/autotoolsaction.cpp
index 820c4bd9..66fe9f08 100644
--- a/buildtools/autotools/autotoolsaction.cpp
+++ b/buildtools/autotools/autotoolsaction.cpp
@@ -104,13 +104,13 @@ int AutoToolsAction::plug( TQWidget* w, int index )
}
// Check if action is permitted
- if (kapp && !kapp->authorizeTDEAction(name()))
+ if (tdeApp && !tdeApp->authorizeTDEAction(name()))
return -1;
- if ( ::tqqt_cast<TQToolButton*>( w ) )
+ if ( ::tqt_cast<TQToolButton*>( w ) )
{
TQToolButton* tb = static_cast<TQToolButton*>( w );
- connect( tb, TQT_SIGNAL( clicked() ), this, TQT_SLOT( activate() ) );
+ connect( tb, TQ_SIGNAL( clicked() ), this, TQ_SLOT( activate() ) );
int id = getToolButtonID();
if ( !icon().isEmpty() )
@@ -145,7 +145,7 @@ void AutoToolsAction::updateEnabled( int i )
{
TQWidget* w = container( i );
- if ( ::tqqt_cast<TQToolButton*>( w ) )
+ if ( ::tqt_cast<TQToolButton*>( w ) )
static_cast<TQToolButton*>( w )->setEnabled( isEnabled() );
else
TDEAction::updateEnabled( i ) ;