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-18 09:59:16 +0900 |
commit | 40393e30bb743346b6b40bf130da35419c12ebdc (patch) | |
tree | 9330d82486c7b3125b8275914565b324f9af523e /kppp/logview/monthly.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 <michele.calgaro@yahoo.it>
(cherry picked from commit 1329ec6abbcb7b79cd960e0ca138f16598d5f11f)
Diffstat (limited to 'kppp/logview/monthly.cpp')
-rw-r--r-- | kppp/logview/monthly.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/kppp/logview/monthly.cpp b/kppp/logview/monthly.cpp index 1a6b5a1f..656bf582 100644 --- a/kppp/logview/monthly.cpp +++ b/kppp/logview/monthly.cpp @@ -196,7 +196,7 @@ MonthlyWidget::MonthlyWidget(TQWidget *parent) : lv->setMinimumHeight(280); lv->setSelectionMode(TQListView::Extended); selectionItem = 0L; - connect(lv, TQT_SIGNAL(selectionChanged()), TQT_SLOT(slotSelectionChanged())); + connect(lv, TQ_SIGNAL(selectionChanged()), TQ_SLOT(slotSelectionChanged())); lv2 = new TDEListView(this); lv2->addColumn(i18n("Connection")); @@ -225,8 +225,8 @@ MonthlyWidget::MonthlyWidget(TQWidget *parent) : cboConnections = new TQComboBox(false, this); // add a combo box to select connections cboConnections->setMaximumWidth(200); // a resonable size cboConnections->insertItem(i18n("All Connections")); // default to all connections - connect(cboConnections, TQT_SIGNAL(activated(int)), - this, TQT_SLOT(slotConnections(int))); + connect(cboConnections, TQ_SIGNAL(activated(int)), + this, TQ_SLOT(slotConnections(int))); bbox = new KButtonBox(this, TQt::Vertical); prev = bbox->addButton(i18n("&Prev Month")); @@ -236,14 +236,14 @@ MonthlyWidget::MonthlyWidget(TQWidget *parent) : bbox->addStretch(1); exportBttn = bbox->addButton(i18n("&Export...")); - connect(prev, TQT_SIGNAL(released()), - this, TQT_SLOT(prevMonth())); - connect(next, TQT_SIGNAL(released()), - this, TQT_SLOT(nextMonth())); - connect(today, TQT_SIGNAL(released()), - this, TQT_SLOT(currentMonth())); - connect(exportBttn, TQT_SIGNAL(clicked()), - this, TQT_SLOT(exportWizard())); + connect(prev, TQ_SIGNAL(released()), + this, TQ_SLOT(prevMonth())); + connect(next, TQ_SIGNAL(released()), + this, TQ_SLOT(nextMonth())); + connect(today, TQ_SIGNAL(released()), + this, TQ_SLOT(currentMonth())); + connect(exportBttn, TQ_SIGNAL(clicked()), + this, TQ_SLOT(exportWizard())); bbox->addStretch(8); bbox->layout(); |