summaryrefslogtreecommitdiffstats
path: root/konq-plugins/sidebar/newsticker/norsswidget.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-11 10:35:25 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-13 20:23:16 +0900
commite234565531cd8c11949cc6aecf16179e75312458 (patch)
tree90b0cb6c9f6c2a04712bbfb73b531275d4f63976 /konq-plugins/sidebar/newsticker/norsswidget.cpp
parentbe3456c5d953fb877340a51b2ef699be6b3c7c02 (diff)
downloadtdeaddons-e234565531cd8c11949cc6aecf16179e75312458.tar.gz
tdeaddons-e234565531cd8c11949cc6aecf16179e75312458.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 7e9d8ea45280ad6657796da9536ccf6218111f22)
Diffstat (limited to 'konq-plugins/sidebar/newsticker/norsswidget.cpp')
-rw-r--r--konq-plugins/sidebar/newsticker/norsswidget.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/konq-plugins/sidebar/newsticker/norsswidget.cpp b/konq-plugins/sidebar/newsticker/norsswidget.cpp
index 86aa12c..a96adeb 100644
--- a/konq-plugins/sidebar/newsticker/norsswidget.cpp
+++ b/konq-plugins/sidebar/newsticker/norsswidget.cpp
@@ -44,7 +44,7 @@ namespace KSB_News {
KPushButton *btn = new KPushButton(i18n("&Configure"), this);
btn->setSizePolicy(TQSizePolicy::Fixed, TQSizePolicy::Minimum);
- connect(btn, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotBtnClicked()));
+ connect(btn, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotBtnClicked()));
topLayout->addWidget(btn, 0, TQt::AlignHCenter);
topLayout->addStretch();
@@ -69,8 +69,8 @@ namespace KSB_News {
// User edited the configuration - update your local copies of the
// configuration data
- connect(m_confdlg, TQT_SIGNAL(settingsChanged()), this,
- TQT_SLOT(slotConfigure_okClicked()));
+ connect(m_confdlg, TQ_SIGNAL(settingsChanged()), this,
+ TQ_SLOT(slotConfigure_okClicked()));
m_confdlg->show();
}