summaryrefslogtreecommitdiffstats
path: root/quanta/components/csseditor/propertysetter.h
diff options
context:
space:
mode:
Diffstat (limited to 'quanta/components/csseditor/propertysetter.h')
-rw-r--r--quanta/components/csseditor/propertysetter.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/quanta/components/csseditor/propertysetter.h b/quanta/components/csseditor/propertysetter.h
index 3f13b8ba..2f0a90af 100644
--- a/quanta/components/csseditor/propertysetter.h
+++ b/quanta/components/csseditor/propertysetter.h
@@ -18,9 +18,9 @@
#ifndef PROPERTYSETTER_H
#define PROPERTYSETTER_H
-#include <qhbox.h>
-#include <qptrlist.h>
-#include <qcombobox.h>
+#include <tqhbox.h>
+#include <tqptrlist.h>
+#include <tqcombobox.h>
class miniEditor;
@@ -31,34 +31,34 @@ class KPushButton;
*@author gulmini luciano
*/
-class propertySetter : public QHBox {
+class propertySetter : public TQHBox {
Q_OBJECT
private:
unsigned int m_ind;
- QPtrList<QWidget> m_list;
- QComboBox *m_cb;
+ TQPtrList<TQWidget> m_list;
+ TQComboBox *m_cb;
KPushButton *m_pb;
public:
- propertySetter(QWidget *parent=0, const char *name=0);
+ propertySetter(TQWidget *parent=0, const char *name=0);
~propertySetter();
void installMiniEditor(miniEditor *m);
void setComboBox();
- void setSpinBox(const QString& initialValue="0", const QString& min="0", const QString& max="9999", const QString& s=QString::null);
+ void setSpinBox(const TQString& initialValue="0", const TQString& min="0", const TQString& max="9999", const TQString& s=TQString::null);
void setLineEdit();
void setPredefinedColorListEditor();
void reset();
void addButton();
- QComboBox* ComboBox() const { return m_cb; }
+ TQComboBox* ComboBox() const { return m_cb; }
public slots:
void Show();
signals:
- void valueChanged(const QString&);
+ void valueChanged(const TQString&);
};
#endif