diff options
Diffstat (limited to 'akregator/src/propertiesdialog.cpp')
-rw-r--r-- | akregator/src/propertiesdialog.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/akregator/src/propertiesdialog.cpp b/akregator/src/propertiesdialog.cpp index cd63c2045..28ee7858d 100644 --- a/akregator/src/propertiesdialog.cpp +++ b/akregator/src/propertiesdialog.cpp @@ -32,13 +32,13 @@ #include <klocale.h> #include <knuminput.h> -#include <qcheckbox.h> -#include <qbuttongroup.h> -#include <qradiobutton.h> +#include <tqcheckbox.h> +#include <tqbuttongroup.h> +#include <tqradiobutton.h> namespace Akregator { -FeedPropertiesWidget::FeedPropertiesWidget(QWidget *parent, const char *name) +FeedPropertiesWidget::FeedPropertiesWidget(TQWidget *parent, const char *name) : FeedPropertiesWidgetBase(parent, name) { } @@ -65,14 +65,14 @@ void FeedPropertiesWidget::slotUpdateCheckBoxToggled( bool enabled ) } -FeedPropertiesDialog::FeedPropertiesDialog(QWidget *parent, const char *name) +FeedPropertiesDialog::FeedPropertiesDialog(TQWidget *parent, const char *name) : KDialogBase(KDialogBase::Swallow, Qt::WStyle_DialogBorder, parent, name, true, i18n("Feed Properties"), KDialogBase::Ok|KDialogBase::Cancel) { widget=new FeedPropertiesWidget(this); setMainWidget(widget); widget->feedNameEdit->setFocus(); - connect(widget->feedNameEdit, SIGNAL(textChanged(const QString&)), this, SLOT(slotSetCaption(const QString&))); + connect(widget->feedNameEdit, TQT_SIGNAL(textChanged(const TQString&)), this, TQT_SLOT(slotSetCaption(const TQString&))); } FeedPropertiesDialog::~FeedPropertiesDialog() @@ -97,7 +97,7 @@ void FeedPropertiesDialog::slotOk() KDialogBase::slotOk(); } -void FeedPropertiesDialog::slotSetCaption(const QString& c) +void FeedPropertiesDialog::slotSetCaption(const TQString& c) { if(c.isEmpty()) setCaption(i18n("Feed Properties")); @@ -129,12 +129,12 @@ void FeedPropertiesDialog::setFeed(Feed* feed) } -const QString FeedPropertiesDialog::feedName() const +const TQString FeedPropertiesDialog::feedName() const { return widget->feedNameEdit->text(); } -const QString FeedPropertiesDialog::url() const +const TQString FeedPropertiesDialog::url() const { return widget->urlEdit->text(); } @@ -213,12 +213,12 @@ void FeedPropertiesDialog::setArchiveMode(Feed::ArchiveMode mode) widget->rb_limitArticleNumber->setChecked(true); } } -void FeedPropertiesDialog::setFeedName(const QString& title) +void FeedPropertiesDialog::setFeedName(const TQString& title) { widget->feedNameEdit->setText(title); } -void FeedPropertiesDialog::setUrl(const QString& url) +void FeedPropertiesDialog::setUrl(const TQString& url) { widget->urlEdit->setText(url); } |