diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-07 19:47:24 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-09 10:54:28 +0900 |
| commit | 3bf0b6d5ee3682be7fd1225496ae0df601d60ecb (patch) | |
| tree | ede40d235408a2be3154eeba513ccfebe2a7efe9 /src/kommando.cpp | |
| parent | 9066230a322fb0cd17a05c6ddd9e12f290f3547a (diff) | |
| download | kommando-3bf0b6d5ee3682be7fd1225496ae0df601d60ecb.tar.gz kommando-3bf0b6d5ee3682be7fd1225496ae0df601d60ecb.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit a966514dd8398a2dd1a49820f336f997da1f628c)
Diffstat (limited to 'src/kommando.cpp')
| -rw-r--r-- | src/kommando.cpp | 6 |
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; |
