summaryrefslogtreecommitdiffstats
path: root/kdeprint/kpfilterpage.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:46:43 +0000
commitffe8a83e053396df448e9413828527613ca3bd46 (patch)
treea73d4169e02df4a50f9a12cb165fcd0ab5bac7c6 /kdeprint/kpfilterpage.h
parent682bf3bfdcbcbb1fca85e8a36ed03e062e0555d5 (diff)
downloadtdelibs-ffe8a83e053396df448e9413828527613ca3bd46.tar.gz
tdelibs-ffe8a83e053396df448e9413828527613ca3bd46.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1157647 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdeprint/kpfilterpage.h')
-rw-r--r--kdeprint/kpfilterpage.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/kdeprint/kpfilterpage.h b/kdeprint/kpfilterpage.h
index f6becc6a5..c05b72e56 100644
--- a/kdeprint/kpfilterpage.h
+++ b/kdeprint/kpfilterpage.h
@@ -22,8 +22,8 @@
#include "kprintdialogpage.h"
-#include <qdict.h>
-#include <qstringlist.h>
+#include <tqdict.h>
+#include <tqstringlist.h>
class KListView;
class KXmlCommand;
@@ -35,12 +35,12 @@ class KPFilterPage : public KPrintDialogPage
{
Q_OBJECT
public:
- KPFilterPage(QWidget *parent = 0, const char *name = 0);
+ KPFilterPage(TQWidget *parent = 0, const char *name = 0);
~KPFilterPage();
- void setOptions(const QMap<QString,QString>& opts);
- void getOptions(QMap<QString,QString>& opts, bool incldef = false);
- bool isValid(QString& msg);
+ void setOptions(const TQMap<TQString,TQString>& opts);
+ void getOptions(TQMap<TQString,TQString>& opts, bool incldef = false);
+ bool isValid(TQString& msg);
protected slots:
void slotAddClicked();
@@ -48,18 +48,18 @@ protected slots:
void slotUpClicked();
void slotDownClicked();
void slotConfigureClicked();
- void slotItemSelected(QListViewItem*);
+ void slotItemSelected(TQListViewItem*);
protected:
KXmlCommand* currentFilter();
void checkFilterChain();
void updateInfo();
- QStringList activeList();
+ TQStringList activeList();
void updateButton();
private:
KListView *m_view;
QStringList m_filters; // <idname,description> pairs
- QDict<KXmlCommand> m_activefilters;
+ TQDict<KXmlCommand> m_activefilters;
QToolButton *m_add, *m_remove, *m_up, *m_down, *m_configure;
bool m_valid;
QTextBrowser *m_info;