summaryrefslogtreecommitdiffstats
path: root/kickermenu-3.3
diff options
context:
space:
mode:
Diffstat (limited to 'kickermenu-3.3')
-rw-r--r--kickermenu-3.3/menuapplet.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/kickermenu-3.3/menuapplet.cpp b/kickermenu-3.3/menuapplet.cpp
index 75e9d30..fb3424e 100644
--- a/kickermenu-3.3/menuapplet.cpp
+++ b/kickermenu-3.3/menuapplet.cpp
@@ -94,7 +94,7 @@ Applet::Applet( const TQString& configFile_P, TQWidget* parent_P )
TQIntDict<TQMenuBar>(97); //allowing 97 entries - should be enough, if not - who cares: just a label and hashtables are slightly faster than lists...
windowIndicator = new TQMenuBar(this);
windowList = new KWindowListMenu(windowIndicator);
- connect(windowList, SIGNAL(aboutToShow()), this, SLOT(initPopup()));
+ connect(windowList, TQ_SIGNAL(aboutToShow()), this, TQ_SLOT(initPopup()));
windowIndicator->insertItem( "KDE", windowList, 0);
windowIndicator->move(0,-1);
windowIndicator->show();
@@ -104,11 +104,11 @@ Applet::Applet( const TQString& configFile_P, TQWidget* parent_P )
dcopclient.registerAs( "menuapplet", false );
grow_indicator_left.hide();
grow_indicator_right.hide();
- connect( &grow_indicator_left, SIGNAL( clicked()), SLOT( growClicked()));
- connect( &grow_indicator_right, SIGNAL( clicked()), SLOT( growClicked()));
+ connect( &grow_indicator_left, TQ_SIGNAL( clicked()), TQ_SLOT( growClicked()));
+ connect( &grow_indicator_right, TQ_SIGNAL( clicked()), TQ_SLOT( growClicked()));
// toolbarAppearanceChanged(int) is sent when changing macstyle
- connect( kapp, SIGNAL( toolbarAppearanceChanged( int )),
- this, SLOT( readSettings()));
+ connect( kapp, TQ_SIGNAL( toolbarAppearanceChanged( int )),
+ this, TQ_SLOT( readSettings()));
claimSelection();
readSettings();
}
@@ -434,12 +434,12 @@ void Applet::claimSelection()
{
delete selection_watcher;
selection_watcher = NULL;
- connect( selection, SIGNAL( lostOwnership()), SLOT( lostSelection()));
+ connect( selection, TQ_SIGNAL( lostOwnership()), TQ_SLOT( lostSelection()));
module = new KWinModule;
- connect( module, SIGNAL( windowAdded( WId )), this, SLOT( windowAdded( WId )));
- connect( module, SIGNAL( windowRemoved( WId )), this, SLOT( windowRemoved( WId )));
- connect( module, SIGNAL( activeWindowChanged( WId )),
- this, SLOT( activeWindowChanged( WId )));
+ connect( module, TQ_SIGNAL( windowAdded( WId )), this, TQ_SLOT( windowAdded( WId )));
+ connect( module, TQ_SIGNAL( windowRemoved( WId )), this, TQ_SLOT( windowRemoved( WId )));
+ connect( module, TQ_SIGNAL( activeWindowChanged( WId )),
+ this, TQ_SLOT( activeWindowChanged( WId )));
TQValueList< WId > windows = module->windows();
for( TQValueList< WId >::ConstIterator it = windows.begin();
it != windows.end();
@@ -465,7 +465,7 @@ void Applet::lostSelection()
if( selection_watcher == NULL )
{
selection_watcher = new TDESelectionWatcher( makeSelectionAtom(), DefaultScreen( tqt_xdisplay()));
- connect( selection_watcher, SIGNAL( lostOwner()), this, SLOT( claimSelection()));
+ connect( selection_watcher, TQ_SIGNAL( lostOwner()), this, TQ_SLOT( claimSelection()));
}
delete module;
module = NULL;