summaryrefslogtreecommitdiffstats
path: root/src/kcmkommando.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-07 19:47:24 +0900
committerMichele Calgaro <[email protected]>2024-01-07 19:47:24 +0900
commita966514dd8398a2dd1a49820f336f997da1f628c (patch)
treed08e82c31a6404018267824ae95bf64852fcc39f /src/kcmkommando.cpp
parent283e2da098ca935d119fded0464989fcde5fff66 (diff)
downloadkommando-a966514dd8398a2dd1a49820f336f997da1f628c.tar.gz
kommando-a966514dd8398a2dd1a49820f336f997da1f628c.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/kcmkommando.cpp')
-rw-r--r--src/kcmkommando.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kcmkommando.cpp b/src/kcmkommando.cpp
index 4bd597f..88f1308 100644
--- a/src/kcmkommando.cpp
+++ b/src/kcmkommando.cpp
@@ -50,7 +50,7 @@ KCMKommando::KCMKommando(TQWidget *parent, const char *name, const TQStringList&
TQVBoxLayout* layout = new TQVBoxLayout( this );
layout->setAutoAdd( true );
configDialog = new ConfigDialogImpl(this);
- connect(configDialog, SIGNAL(changed(bool)), this, SLOT(configChanged(bool)));
+ connect(configDialog, TQ_SIGNAL(changed(bool)), this, TQ_SLOT(configChanged(bool)));
load();
};