diff options
Diffstat (limited to 'kppp/acctselect.cpp')
-rw-r--r-- | kppp/acctselect.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kppp/acctselect.cpp b/kppp/acctselect.cpp index f42b5a66..cd4013dd 100644 --- a/kppp/acctselect.cpp +++ b/kppp/acctselect.cpp @@ -60,20 +60,20 @@ AccountingSelector::AccountingSelector(TQWidget *parent, bool _isnewaccount, con enable_accounting = new TQCheckBox(i18n("&Enable accounting"), parent); l1->addWidget(enable_accounting, 1); - connect(enable_accounting, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(enableItems(bool))); + connect(enable_accounting, TQ_SIGNAL(toggled(bool)), this, TQ_SLOT(enableItems(bool))); // insert the tree widget tl = new TQListView(parent, "treewidget"); - connect(tl, TQT_SIGNAL(selectionChanged(TQListViewItem*)), this, - TQT_SLOT(slotSelectionChanged(TQListViewItem*))); + connect(tl, TQ_SIGNAL(selectionChanged(TQListViewItem*)), this, + TQ_SLOT(slotSelectionChanged(TQListViewItem*))); tl->setMinimumSize(220, 200); l1->addWidget(tl, 1); KURLLabel *up = new KURLLabel(parent); up->setText(i18n("Check for rule updates")); up->setURL("http://developer.kde.org/~kppp/rules.html"); - connect(up, TQT_SIGNAL(leftClickedURL(const TQString&)), TQT_SLOT(openURL(const TQString&))); + connect(up, TQ_SIGNAL(leftClickedURL(const TQString&)), TQ_SLOT(openURL(const TQString&))); l1->addWidget(up, 1); |