summaryrefslogtreecommitdiffstats
path: root/src/kommando.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kommando.cpp')
-rw-r--r--src/kommando.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kommando.cpp b/src/kommando.cpp
index 9a52b93..6c49f09 100644
--- a/src/kommando.cpp
+++ b/src/kommando.cpp
@@ -43,7 +43,7 @@ Kommando::Kommando()
//set up the navbutton
Config& config = Config::getSingleton();
navbutton.move(config.menuRadius(),config.menuRadius());
- connect(&navbutton, SIGNAL(clicked()), this, SLOT(slotNavClick()));
+ connect(&navbutton, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotNavClick()));
}
void Kommando::slotGlobAccel()
@@ -121,8 +121,8 @@ void Kommando::setActMenu( Menu * newMenu )
}
//initialize the new menu
- connect(newMenu, SIGNAL(clicked(int)), this, SLOT(slotOnClick()) );
- connect(newMenu, SIGNAL(buttonSelected(int)),this,SLOT(slotButtonSelected(int)));
+ connect(newMenu, TQ_SIGNAL(clicked(int)), this, TQ_SLOT(slotOnClick()) );
+ connect(newMenu, TQ_SIGNAL(buttonSelected(int)),this,TQ_SLOT(slotButtonSelected(int)));
newMenu->showButtons();
}
actMenu = newMenu;