summaryrefslogtreecommitdiffstats
path: root/src/sources/source.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-05 10:20:24 +0900
committerMichele Calgaro <[email protected]>2024-01-07 14:53:54 +0900
commitd7c9764d0a20dd28c05bab324a019f6cf5e9aa92 (patch)
treeaff34929a9e49ea2db14cbd19e66556ecb2d3df4 /src/sources/source.cpp
parent545f3b89bb60c83ee593dcdf023beb005e1b2fd8 (diff)
downloadkima-d7c9764d0a20dd28c05bab324a019f6cf5e9aa92.tar.gz
kima-d7c9764d0a20dd28c05bab324a019f6cf5e9aa92.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 5e17591a668ba0345cddd44df3fa6572eb25ddf1)
Diffstat (limited to 'src/sources/source.cpp')
-rw-r--r--src/sources/source.cpp2
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);