summaryrefslogtreecommitdiffstats
path: root/knode/knstatusfilter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'knode/knstatusfilter.cpp')
-rw-r--r--knode/knstatusfilter.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/knode/knstatusfilter.cpp b/knode/knstatusfilter.cpp
index 6389794d..a1379a26 100644
--- a/knode/knstatusfilter.cpp
+++ b/knode/knstatusfilter.cpp
@@ -14,8 +14,8 @@
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, US
*/
-#include <qlayout.h>
-#include <qcheckbox.h>
+#include <tqlayout.h>
+#include <tqcheckbox.h>
#include <klocale.h>
#include <ksimpleconfig.h>
@@ -94,21 +94,21 @@ bool KNStatusFilter::doFilter(KNRemoteArticle *a)
//==============================================================================
-KNStatusFilterWidget::KNStatusFilterWidget(QWidget *parent) :
- QButtonGroup(0, parent)
+KNStatusFilterWidget::KNStatusFilterWidget(TQWidget *parent) :
+ TQButtonGroup(0, parent)
{
setFrameStyle(NoFrame);
- enR=new QCheckBox(i18n("Is read:"), this);
- enN=new QCheckBox(i18n("Is new:"), this);
- enUS=new QCheckBox(i18n("Has unread followups:"), this);
- enNS=new QCheckBox(i18n("Has new followups:"), this);
+ enR=new TQCheckBox(i18n("Is read:"), this);
+ enN=new TQCheckBox(i18n("Is new:"), this);
+ enUS=new TQCheckBox(i18n("Has unread followups:"), this);
+ enNS=new TQCheckBox(i18n("Has new followups:"), this);
rCom=new TFCombo(this);
nCom=new TFCombo(this);
usCom=new TFCombo(this);
nsCom=new TFCombo(this);
- QGridLayout *topL=new QGridLayout(this, 5, 3, 15,5);
+ TQGridLayout *topL=new TQGridLayout(this, 5, 3, 15,5);
topL->addWidget(enR,0,0); topL->addWidget(rCom,0,1);
topL->addWidget(enN,1,0); topL->addWidget(nCom,1,1);
topL->addWidget(enUS,2,0); topL->addWidget(usCom,2,1);
@@ -116,7 +116,7 @@ KNStatusFilterWidget::KNStatusFilterWidget(QWidget *parent) :
topL->setColStretch(2,1);
topL->setRowStretch(4,1);
- connect(this, SIGNAL(clicked(int)), this, SLOT(slotEnabled(int)));
+ connect(this, TQT_SIGNAL(clicked(int)), this, TQT_SLOT(slotEnabled(int)));
}
@@ -197,7 +197,7 @@ void KNStatusFilterWidget::slotEnabled(int c)
//==============================================================================
-KNStatusFilterWidget::TFCombo::TFCombo(QWidget *parent) : QComboBox(parent)
+KNStatusFilterWidget::TFCombo::TFCombo(TQWidget *parent) : TQComboBox(parent)
{
insertItem(i18n("True"));
insertItem(i18n("False"));