diff options
Diffstat (limited to 'lib/widgets/propeditor/psizeedit.h')
-rw-r--r-- | lib/widgets/propeditor/psizeedit.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/widgets/propeditor/psizeedit.h b/lib/widgets/propeditor/psizeedit.h index 3053f28f..4613f532 100644 --- a/lib/widgets/propeditor/psizeedit.h +++ b/lib/widgets/propeditor/psizeedit.h @@ -29,21 +29,21 @@ class QPainter; namespace PropertyLib{ /** -@short %Property editor for QSize values. +@short %Property editor for TQSize values. */ class PSizeEdit: public PropertyWidget { Q_OBJECT public: - PSizeEdit(MultiProperty *property, QWidget *parent = 0, const char *name = 0); + PSizeEdit(MultiProperty *property, TQWidget *parent = 0, const char *name = 0); - virtual QVariant value() const; - virtual void drawViewer(QPainter* p, const QColorGroup& cg, const QRect& r, const QVariant& value); - virtual void setValue(const QVariant& value, bool emitChange); + virtual TQVariant value() const; + virtual void drawViewer(TQPainter* p, const TQColorGroup& cg, const TQRect& r, const TQVariant& value); + virtual void setValue(const TQVariant& value, bool emitChange); private: KLineEdit *m_edit; - QVariant m_value; + TQVariant m_value; }; } |