diff options
author | Michele Calgaro <[email protected]> | 2024-01-06 12:59:19 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-06 12:59:19 +0900 |
commit | 61f899bc4e80ae6aeed18a90fc04cecebfa700ad (patch) | |
tree | 166c81f6546c02d8370f7f939fb3a7bb06688b4f /style/shortcuthandler.cpp | |
parent | babc63b811b6e52a4a0003f1aa46cbc981591f73 (diff) | |
download | tde-style-qtcurve-61f899bc4e80ae6aeed18a90fc04cecebfa700ad.tar.gz tde-style-qtcurve-61f899bc4e80ae6aeed18a90fc04cecebfa700ad.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'style/shortcuthandler.cpp')
-rw-r--r-- | style/shortcuthandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/style/shortcuthandler.cpp b/style/shortcuthandler.cpp index 7407366..bb27988 100644 --- a/style/shortcuthandler.cpp +++ b/style/shortcuthandler.cpp @@ -77,7 +77,7 @@ void ShortcutHandler::updateWidget(TQWidget *w) { if(!itsUpdated.contains(w)) { - connect(w, SIGNAL(destroyed(TQObject *)), this, SLOT(widgetDestroyed(TQObject *))); + connect(w, TQ_SIGNAL(destroyed(TQObject *)), this, TQ_SLOT(widgetDestroyed(TQObject *))); itsUpdated.append(w); w->repaint(TRUE); } @@ -151,7 +151,7 @@ bool ShortcutHandler::eventFilter(TQObject *o, TQEvent *e) itsOpenMenus.append(widget); if(itsAltDown && prev) prev->repaint(TRUE); - connect(widget, SIGNAL(destroyed(TQObject *)), this, SLOT(widgetDestroyed(TQObject *))); + connect(widget, TQ_SIGNAL(destroyed(TQObject *)), this, TQ_SLOT(widgetDestroyed(TQObject *))); } break; case TQEvent::Hide: |