summaryrefslogtreecommitdiffstats
path: root/quanta/dialogs/tagdialogs/tagwidget.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:54:04 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:54:04 +0000
commitdc6b8e72fed2586239e3514819238c520636c9d9 (patch)
tree88b200df0a0b7fab9d6f147596173556f1ed9a13 /quanta/dialogs/tagdialogs/tagwidget.h
parent6927d4436e54551917f600b706a8d6109e49de1c (diff)
downloadtdewebdev-dc6b8e72fed2586239e3514819238c520636c9d9.tar.gz
tdewebdev-dc6b8e72fed2586239e3514819238c520636c9d9.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdewebdev@1157656 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'quanta/dialogs/tagdialogs/tagwidget.h')
-rw-r--r--quanta/dialogs/tagdialogs/tagwidget.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/quanta/dialogs/tagdialogs/tagwidget.h b/quanta/dialogs/tagdialogs/tagwidget.h
index 89f8e371..83508aab 100644
--- a/quanta/dialogs/tagdialogs/tagwidget.h
+++ b/quanta/dialogs/tagdialogs/tagwidget.h
@@ -17,8 +17,8 @@
#ifndef TAGWIDGET_H
#define TAGWIDGET_H
-#include <qwidget.h>
-#include <qdict.h>
+#include <tqwidget.h>
+#include <tqdict.h>
class QComboBox;
class QLineEdit;
@@ -33,23 +33,23 @@ class KURL;
class TagWidget {
public:
- TagWidget(QObject *parent=0, const char *name=0);
+ TagWidget(TQObject *parent=0, const char *name=0);
virtual ~TagWidget();
- virtual void readAttributes(QDict<QString> *) {};
- virtual void writeAttributes(QDict<QString> *) {};
- void updateDict(const QString &attr, QComboBox *combo);
- void updateDict(const QString &attr, QLineEdit *line);
- void updateDict(const QString &attr, QSpinBox *spin);
- void updateDict(const QString &attr, QCheckBox *check);
+ virtual void readAttributes(TQDict<TQString> *) {};
+ virtual void writeAttributes(TQDict<TQString> *) {};
+ void updateDict(const TQString &attr, TQComboBox *combo);
+ void updateDict(const TQString &attr, TQLineEdit *line);
+ void updateDict(const TQString &attr, TQSpinBox *spin);
+ void updateDict(const TQString &attr, TQCheckBox *check);
- void setValue(const QString &val, QComboBox *combo);
- void setValue(const QString &val, QLineEdit *line);
- void setValue(const QString &val, QSpinBox *spin);
- void setValue(const QString &val, KColorButton *button);
+ void setValue(const TQString &val, TQComboBox *combo);
+ void setValue(const TQString &val, TQLineEdit *line);
+ void setValue(const TQString &val, TQSpinBox *spin);
+ void setValue(const TQString &val, KColorButton *button);
protected:
- QDict<QString> *dict; // dictionary of attributes and values
+ TQDict<TQString> *dict; // dictionary of attributes and values
KURL baseURL;
};