summaryrefslogtreecommitdiffstats
path: root/kcontrol/konsole/schemaeditor.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
commitc663b6440964f6ac48027143ac9e63298991f9d0 (patch)
tree6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /kcontrol/konsole/schemaeditor.h
parenta061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff)
downloadtdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz
tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kcontrol/konsole/schemaeditor.h')
-rw-r--r--kcontrol/konsole/schemaeditor.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/kcontrol/konsole/schemaeditor.h b/kcontrol/konsole/schemaeditor.h
index 550f51762..9b17f169d 100644
--- a/kcontrol/konsole/schemaeditor.h
+++ b/kcontrol/konsole/schemaeditor.h
@@ -23,7 +23,7 @@
#endif
#include <kapplication.h>
-#include <qwidget.h>
+#include <tqwidget.h>
class QPixmap;
class KSharedPixmap;
@@ -35,18 +35,18 @@ class SchemaEditor : public SchemaDialog
Q_OBJECT
public:
/** constructor */
- SchemaEditor(QWidget* parent=0, const char *name=0);
+ SchemaEditor(TQWidget* parent=0, const char *name=0);
/** destructor */
~SchemaEditor();
- QString schema();
- void setSchema(QString);
+ TQString schema();
+ void setSchema(TQString);
bool isModified() const { return schMod; }
void querySave();
signals:
void changed();
- void schemaListChanged(const QStringList &titles, const QStringList &filenames);
+ void schemaListChanged(const TQStringList &titles, const TQStringList &filenames);
public slots:
void slotColorChanged(int);
@@ -60,23 +60,23 @@ class SchemaEditor : public SchemaDialog
private slots:
void show();
void schemaModified();
- void loadAllSchema(QString currentFile="");
+ void loadAllSchema(TQString currentFile="");
void updatePreview();
private:
bool schMod;
- QMemArray<QColor> color;
- QMemArray<int> type; // 0= custom, 1= sysfg, 2=sysbg, 3=rcolor
- QMemArray<bool> transparent;
- QMemArray<bool> bold;
- QPixmap pix;
+ TQMemArray<TQColor> color;
+ TQMemArray<int> type; // 0= custom, 1= sysfg, 2=sysbg, 3=rcolor
+ TQMemArray<bool> transparent;
+ TQMemArray<bool> bold;
+ TQPixmap pix;
KSharedPixmap *spix;
- QString defaultSchema;
+ TQString defaultSchema;
bool loaded;
bool schemaLoaded;
bool change;
int oldSchema;
int oldSlot;
- QString readSchemaTitle(const QString& filename);
+ TQString readSchemaTitle(const TQString& filename);
void schemaListChanged();
};