diff options
author | Michele Calgaro <[email protected]> | 2024-01-05 10:20:24 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-07 14:53:54 +0900 |
commit | d7c9764d0a20dd28c05bab324a019f6cf5e9aa92 (patch) | |
tree | aff34929a9e49ea2db14cbd19e66556ecb2d3df4 /src/sourcelistitem.cpp | |
parent | 545f3b89bb60c83ee593dcdf023beb005e1b2fd8 (diff) | |
download | kima-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/sourcelistitem.cpp')
-rw-r--r-- | src/sourcelistitem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sourcelistitem.cpp b/src/sourcelistitem.cpp index 68a68d7..7cf36db 100644 --- a/src/sourcelistitem.cpp +++ b/src/sourcelistitem.cpp @@ -71,7 +71,7 @@ void SourceListItem::initItem(){ //setText(1, mSource->getName()); //item->setText(2, source->getDescription()); - connect(mSource, TQT_SIGNAL(enabledChanged(bool, Source*)), this, TQT_SLOT(setEnabled(bool))); + connect(mSource, TQ_SIGNAL(enabledChanged(bool, Source*)), this, TQ_SLOT(setEnabled(bool))); setOn(mSource->isEnabled()); } |