diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-11 10:46:02 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-12 18:41:00 +0900 |
commit | d0fc8a81142abedca766138edbd033dd4107daa7 (patch) | |
tree | 2a0de93a97438c432780b69c0a029e009c6db4eb /styles/phase/config | |
parent | 060a647e209ab79f84514a0edb4e04fd51a47b19 (diff) | |
download | tdeartwork-d0fc8a81142abedca766138edbd033dd4107daa7.tar.gz tdeartwork-d0fc8a81142abedca766138edbd033dd4107daa7.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 64efc076184547c5d23863fb027dd3a01d552f19)
Diffstat (limited to 'styles/phase/config')
-rw-r--r-- | styles/phase/config/phasestyleconfig.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/styles/phase/config/phasestyleconfig.cpp b/styles/phase/config/phasestyleconfig.cpp index df48f9e3..4a3b7bcd 100644 --- a/styles/phase/config/phasestyleconfig.cpp +++ b/styles/phase/config/phasestyleconfig.cpp @@ -39,10 +39,10 @@ PhaseStyleConfig::PhaseStyleConfig(TQWidget* parent) : StyleDialog(parent) highlights->setChecked(oldhighlights); // connections - connect(gradients, TQT_SIGNAL(toggled(bool)), - this, TQT_SLOT(updateChanged())); - connect(highlights, TQT_SIGNAL(toggled(bool)), - this, TQT_SLOT(updateChanged())); + connect(gradients, TQ_SIGNAL(toggled(bool)), + this, TQ_SLOT(updateChanged())); + connect(highlights, TQ_SIGNAL(toggled(bool)), + this, TQ_SLOT(updateChanged())); } ////////////////////////////////////////////////////////////////////////////// |