summaryrefslogtreecommitdiffstats
path: root/kdeprint/management/kmwbackend.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/management/kmwbackend.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/management/kmwbackend.h')
-rw-r--r--kdeprint/management/kmwbackend.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/kdeprint/management/kmwbackend.h b/kdeprint/management/kmwbackend.h
index 654ec3337..e31136851 100644
--- a/kdeprint/management/kmwbackend.h
+++ b/kdeprint/management/kmwbackend.h
@@ -22,7 +22,7 @@
#include "kmwizardpage.h"
#include <kdelibs_export.h>
-#include <qmap.h>
+#include <tqmap.h>
class QButtonGroup;
class QVBoxLayout;
@@ -30,13 +30,13 @@ class QVBoxLayout;
class KDEPRINT_EXPORT KMWBackend : public KMWizardPage
{
public:
- KMWBackend(QWidget *parent = 0, const char *name = 0);
+ KMWBackend(TQWidget *parent = 0, const char *name = 0);
- bool isValid(QString&);
+ bool isValid(TQString&);
void initPrinter(KMPrinter*);
void updatePrinter(KMPrinter*);
- void addBackend(int ID, const QString& txt, bool on = true, const QString& whatsThis = QString::null, int nextpage = -1);
+ void addBackend(int ID, const TQString& txt, bool on = true, const TQString& whatsThis = TQString::null, int nextpage = -1);
void addBackend(int ID = -1, bool on = true, int nextpage = -1);
void enableBackend(int ID, bool on = true);
@@ -47,7 +47,7 @@ private:
// to have different backends switching to the same page (like backends requiring
// a password). If the next page is not given when adding the backend, the ID is
// used by default.
- QMap<int,int> m_map;
+ TQMap<int,int> m_map;
int m_count;
};