diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-13 17:34:53 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-13 17:51:33 +0900 |
commit | 1329ec6abbcb7b79cd960e0ca138f16598d5f11f (patch) | |
tree | 8b64fab3a352aada6a046f69f1f7e8a6ad819594 /kopete/plugins/history/historypreferences.cpp | |
parent | 69c2eb8d5f2ed64c876b2a1081cc83ed9f4652d3 (diff) | |
download | tdenetwork-1329ec6abbcb7b79cd960e0ca138f16598d5f11f.tar.gz tdenetwork-1329ec6abbcb7b79cd960e0ca138f16598d5f11f.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kopete/plugins/history/historypreferences.cpp')
-rw-r--r-- | kopete/plugins/history/historypreferences.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kopete/plugins/history/historypreferences.cpp b/kopete/plugins/history/historypreferences.cpp index b1bca2f6..52679290 100644 --- a/kopete/plugins/history/historypreferences.cpp +++ b/kopete/plugins/history/historypreferences.cpp @@ -36,13 +36,13 @@ HistoryPreferences::HistoryPreferences(TQWidget *parent, const char*/*name*/, co (new TQVBoxLayout(this))->setAutoAdd(true); p = new HistoryPrefsUI(this); - connect(p->chkShowPrevious, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(slotShowPreviousChanged(bool))); - connect(p->Number_Auto_chatwindow, TQT_SIGNAL(valueChanged(int)), - this, TQT_SLOT(slotModified())); - connect(p->Number_ChatWindow, TQT_SIGNAL(valueChanged(int)), - this, TQT_SLOT(slotModified())); - connect(p->History_color, TQT_SIGNAL(changed(const TQColor&)), - this, TQT_SLOT(slotModified())); + connect(p->chkShowPrevious, TQ_SIGNAL(toggled(bool)), this, TQ_SLOT(slotShowPreviousChanged(bool))); + connect(p->Number_Auto_chatwindow, TQ_SIGNAL(valueChanged(int)), + this, TQ_SLOT(slotModified())); + connect(p->Number_ChatWindow, TQ_SIGNAL(valueChanged(int)), + this, TQ_SLOT(slotModified())); + connect(p->History_color, TQ_SIGNAL(changed(const TQColor&)), + this, TQ_SLOT(slotModified())); load(); } |