diff options
Diffstat (limited to 'akregator/src/mk4storage/mk4confwidget.cpp')
-rw-r--r-- | akregator/src/mk4storage/mk4confwidget.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/akregator/src/mk4storage/mk4confwidget.cpp b/akregator/src/mk4storage/mk4confwidget.cpp index fb95e1602..fce697201 100644 --- a/akregator/src/mk4storage/mk4confwidget.cpp +++ b/akregator/src/mk4storage/mk4confwidget.cpp @@ -26,8 +26,8 @@ #include "mk4confwidget.h" #include "storagemk4impl.h" -#include <qcheckbox.h> -#include <qlabel.h> +#include <tqcheckbox.h> +#include <tqlabel.h> #include <klocale.h> #include <kmessagebox.h> #include <kurlrequester.h> @@ -52,14 +52,14 @@ MK4ConfWidget::MK4ConfWidget() : MK4ConfWidgetBase() label->setEnabled(true); } filereq->setURL(MK4Config::archivePath()); - connect(cbUseDefault, SIGNAL(toggled(bool)), this, SLOT(slotChkBoxUseDefault(bool))); + connect(cbUseDefault, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(slotChkBoxUseDefault(bool))); } void MK4ConfWidget::accept() { - QString path = cbUseDefault->isChecked() ? StorageMK4Impl::defaultArchivePath() : filereq->url(); + TQString path = cbUseDefault->isChecked() ? StorageMK4Impl::defaultArchivePath() : filereq->url(); if (path != MK4Config::archivePath()) { // TODO: if the user changed the archive location, inform him that |