diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /akregator/src/propertiesdialog.cpp | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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); } |