diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-06 12:58:45 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-09 10:16:33 +0900 |
| commit | 10fe0f767ce93103af80b4cc4ae6efb6a589fe13 (patch) | |
| tree | e60ec49c70af054d66119faded93f512ef9100d4 /client/dominoclient.cpp | |
| parent | e19e9e50139cbee2575da9623c6526f25c40630b (diff) | |
| download | tde-style-domino-10fe0f76.tar.gz tde-style-domino-10fe0f76.zip | |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit bfa2c2aaa71232a905bc60a77407dab1423d0959)
Diffstat (limited to 'client/dominoclient.cpp')
| -rw-r--r-- | client/dominoclient.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/dominoclient.cpp b/client/dominoclient.cpp index a6162dd..a8c73ed 100644 --- a/client/dominoclient.cpp +++ b/client/dominoclient.cpp @@ -740,7 +740,7 @@ KCommonDecorationButton *DominoClient::createButton(ButtonType type) case MenuButton: { DominoButton* menu = new DominoButton(MenuButton, this, "menu"); menuButton = menu; - connect(menu, SIGNAL(destroyed()), this, SLOT(menuButtonDestroyed())); + connect(menu, TQ_SIGNAL(destroyed()), this, TQ_SLOT(menuButtonDestroyed())); return menu; break; } @@ -789,8 +789,8 @@ void DominoClient::init() KCommonDecoration::reset(SettingButtons); iconChange(); - connect(this, SIGNAL(keepAboveChanged(bool) ), SLOT(keepAboveChange(bool) ) ); - connect(this, SIGNAL(keepBelowChanged(bool) ), SLOT(keepBelowChange(bool) ) ); + connect(this, TQ_SIGNAL(keepAboveChanged(bool) ), TQ_SLOT(keepAboveChange(bool) ) ); + connect(this, TQ_SIGNAL(keepBelowChanged(bool) ), TQ_SLOT(keepBelowChange(bool) ) ); } void DominoClient::createLayout() |
