summaryrefslogtreecommitdiffstats
path: root/kdeprint/cups/cupsdconf2/cupsdpage.h
diff options
context:
space:
mode:
Diffstat (limited to 'kdeprint/cups/cupsdconf2/cupsdpage.h')
-rw-r--r--kdeprint/cups/cupsdconf2/cupsdpage.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/kdeprint/cups/cupsdconf2/cupsdpage.h b/kdeprint/cups/cupsdconf2/cupsdpage.h
index dedd53ade..e503319ca 100644
--- a/kdeprint/cups/cupsdconf2/cupsdpage.h
+++ b/kdeprint/cups/cupsdconf2/cupsdpage.h
@@ -20,7 +20,7 @@
#ifndef CUPSDPAGE_H
#define CUPSDPAGE_H
-#include <qwidget.h>
+#include <tqwidget.h>
struct CupsdConf;
@@ -28,21 +28,21 @@ class CupsdPage : public QWidget
{
Q_OBJECT
public:
- CupsdPage(QWidget *parent = 0, const char *name = 0);
+ CupsdPage(TQWidget *parent = 0, const char *name = 0);
virtual ~CupsdPage();
- virtual bool loadConfig(CupsdConf *conf, QString& msg) = 0;
- virtual bool saveConfig(CupsdConf *conf, QString& msg) = 0;
+ virtual bool loadConfig(CupsdConf *conf, TQString& msg) = 0;
+ virtual bool saveConfig(CupsdConf *conf, TQString& msg) = 0;
virtual void setInfos(CupsdConf*) {}
- QString pageLabel() const { return label_; }
- QString header() const { return header_; }
- QString pixmap() const { return pixmap_; }
+ TQString pageLabel() const { return label_; }
+ TQString header() const { return header_; }
+ TQString pixmap() const { return pixmap_; }
protected:
- void setPageLabel(const QString& s) { label_ = s; }
- void setHeader(const QString& s) { header_ = s; }
- void setPixmap(const QString& s) { pixmap_ = s; }
+ void setPageLabel(const TQString& s) { label_ = s; }
+ void setHeader(const TQString& s) { header_ = s; }
+ void setPixmap(const TQString& s) { pixmap_ = s; }
protected:
CupsdConf *conf_;