summaryrefslogtreecommitdiffstats
path: root/lib/koproperty/editors/linestyleedit.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/koproperty/editors/linestyleedit.h')
-rw-r--r--lib/koproperty/editors/linestyleedit.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/lib/koproperty/editors/linestyleedit.h b/lib/koproperty/editors/linestyleedit.h
index 6392e2f70..8388b897b 100644
--- a/lib/koproperty/editors/linestyleedit.h
+++ b/lib/koproperty/editors/linestyleedit.h
@@ -23,22 +23,23 @@
#include "../widget.h"
-class QComboBox;
+class TQComboBox;
namespace KoProperty {
class KOPROPERTY_EXPORT LineStyleEdit : public Widget
{
Q_OBJECT
+ TQ_OBJECT
public:
- LineStyleEdit(Property *property, QWidget *parent=0, const char *name=0);
+ LineStyleEdit(Property *property, TQWidget *tqparent=0, const char *name=0);
virtual ~LineStyleEdit();
- virtual QVariant value() const;
- virtual void setValue(const QVariant &value, bool emitChange=true);
+ virtual TQVariant value() const;
+ virtual void setValue(const TQVariant &value, bool emitChange=true);
- virtual void drawViewer(QPainter *p, const QColorGroup &cg, const QRect &r, const QVariant &value);
+ virtual void drawViewer(TQPainter *p, const TQColorGroup &cg, const TQRect &r, const TQVariant &value);
protected:
virtual void setReadOnlyInternal(bool readOnly);
@@ -47,7 +48,7 @@ class KOPROPERTY_EXPORT LineStyleEdit : public Widget
void slotValueChanged(int value);
private:
- QComboBox *m_edit;
+ TQComboBox *m_edit;
};
}