summaryrefslogtreecommitdiffstats
path: root/krecipes/src/dialogs/prepmethodsdialog.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-28 21:16:39 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-02 21:17:00 +0900
commitdd228586bd5b9ebce4232be9e354bf4619a13fdd (patch)
tree11b13ec8c944f968930f8c7fee6a7dfb5fdbb6b5 /krecipes/src/dialogs/prepmethodsdialog.cpp
parentc72be0a6c7b634249f31c9ec6461ee63c2a654b7 (diff)
downloadkrecipes-dd228586bd5b9ebce4232be9e354bf4619a13fdd.tar.gz
krecipes-dd228586bd5b9ebce4232be9e354bf4619a13fdd.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit c7dcbcecefbabfeece27deadb5507bfccd0a31b0)
Diffstat (limited to 'krecipes/src/dialogs/prepmethodsdialog.cpp')
-rw-r--r--krecipes/src/dialogs/prepmethodsdialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/krecipes/src/dialogs/prepmethodsdialog.cpp b/krecipes/src/dialogs/prepmethodsdialog.cpp
index 1ec4b76..066c09f 100644
--- a/krecipes/src/dialogs/prepmethodsdialog.cpp
+++ b/krecipes/src/dialogs/prepmethodsdialog.cpp
@@ -50,8 +50,8 @@ PrepMethodsDialog::PrepMethodsDialog( TQWidget* parent, RecipeDB *db ) : TQWidge
//Connect Signals & Slots
- connect ( newPrepMethodButton, SIGNAL( clicked() ), prepMethodListView, SLOT( createNew() ) );
- connect ( removePrepMethodButton, SIGNAL( clicked() ), prepMethodListView, SLOT( remove
+ connect ( newPrepMethodButton, TQ_SIGNAL( clicked() ), prepMethodListView, TQ_SLOT( createNew() ) );
+ connect ( removePrepMethodButton, TQ_SIGNAL( clicked() ), prepMethodListView, TQ_SLOT( remove
() ) );
}