diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-05 10:20:24 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-05 10:20:24 +0900 |
commit | 5e17591a668ba0345cddd44df3fa6572eb25ddf1 (patch) | |
tree | aff34929a9e49ea2db14cbd19e66556ecb2d3df4 /src/sources/source.cpp | |
parent | 022d1e16d38cbfd9b2f23c060ce060c259b46f22 (diff) | |
download | kima-5e17591a668ba0345cddd44df3fa6572eb25ddf1.tar.gz kima-5e17591a668ba0345cddd44df3fa6572eb25ddf1.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/sources/source.cpp')
-rw-r--r-- | src/sources/source.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sources/source.cpp b/src/sources/source.cpp index 5c4e52a..d9a646c 100644 --- a/src/sources/source.cpp +++ b/src/sources/source.cpp @@ -101,7 +101,7 @@ TQWidget* Source::createPrefs(TQWidget* inParent){ mSourcePrefs = new SourcePrefs(inParent, "sourceprefsui"); // disable nameCheckBox if taskbarCheckBox is disabled - connect(mSourcePrefs->taskbarCheckBox, TQT_SIGNAL(toggled(bool)), mSourcePrefs->nameCheckBox, TQT_SLOT(setEnabled(bool))); + connect(mSourcePrefs->taskbarCheckBox, TQ_SIGNAL(toggled(bool)), mSourcePrefs->nameCheckBox, TQ_SLOT(setEnabled(bool))); // add prefs widgets from sub classes createSubPrefs(mSourcePrefs); |