summaryrefslogtreecommitdiffstats
path: root/knode/kngroupdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'knode/kngroupdialog.cpp')
-rw-r--r--knode/kngroupdialog.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/knode/kngroupdialog.cpp b/knode/kngroupdialog.cpp
index bff6dfd5..eadaf06b 100644
--- a/knode/kngroupdialog.cpp
+++ b/knode/kngroupdialog.cpp
@@ -34,8 +34,8 @@
#include <tqpushbutton.h>
-KNGroupDialog::KNGroupDialog(TQWidget *parent, KNNntpAccount *a) :
- KNGroupBrowser(parent, i18n("Subscribe to Newsgroups"),a, User1 | User2, true, i18n("New &List"), i18n("New &Groups...") )
+KNGroupDialog::KNGroupDialog(TQWidget *tqparent, KNNntpAccount *a) :
+ KNGroupBrowser(tqparent, i18n("Subscribe to Newsgroups"),a, User1 | User2, true, i18n("New &List"), i18n("New &Groups...") )
{
rightLabel->setText(i18n("Current changes:"));
subView=new TQListView(page);
@@ -138,7 +138,7 @@ void KNGroupDialog::toSubscribe(TQSortedList<KNGroupInfo> *l)
}
if (moderated) // warn the user
KMessageBox::information(knGlobals.topWidget,i18n("You have subscribed to a moderated newsgroup.\nYour articles will not appear in the group immediately.\nThey have to go through a moderation process."),
- TQString::null,"subscribeModeratedWarning");
+ TQString(),"subscribeModeratedWarning");
}
@@ -292,7 +292,7 @@ void KNGroupDialog::slotUser2()
topL->addMultiCellWidget(takeLast, 0, 0, 0, 1);
TQLabel *l = new TQLabel(KGlobal::locale()->formatDate(lastDate, false),btnGrp);
- topL->addWidget(l, 1, 1, Qt::AlignLeft);
+ topL->addWidget(l, 1, 1, TQt::AlignLeft);
connect(takeLast, TQT_SIGNAL(toggled(bool)), l, TQT_SLOT(setEnabled(bool)));
@@ -301,7 +301,7 @@ void KNGroupDialog::slotUser2()
KDatePicker *dateSel = new KDatePicker(btnGrp, lastDate);
dateSel->setMinimumSize(dateSel->tqsizeHint());
- topL->addWidget(dateSel, 3, 1, Qt::AlignLeft);
+ topL->addWidget(dateSel, 3, 1, TQt::AlignLeft);
connect(takeCustom, TQT_SIGNAL(toggled(bool)), dateSel, TQT_SLOT(setEnabled(bool)));