diff options
author | Michele Calgaro <[email protected]> | 2024-01-13 17:34:53 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-18 09:59:16 +0900 |
commit | 40393e30bb743346b6b40bf130da35419c12ebdc (patch) | |
tree | 9330d82486c7b3125b8275914565b324f9af523e /kopete/plugins/history/historypreferences.cpp | |
parent | 05594058244ba6a1866d5758ae412fb5afd6d727 (diff) | |
download | tdenetwork-40393e30bb743346b6b40bf130da35419c12ebdc.tar.gz tdenetwork-40393e30bb743346b6b40bf130da35419c12ebdc.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 1329ec6abbcb7b79cd960e0ca138f16598d5f11f)
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(); } |