diff options
Diffstat (limited to 'kexi/widget/kexicustompropertyfactory_p.h')
-rw-r--r-- | kexi/widget/kexicustompropertyfactory_p.h | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/kexi/widget/kexicustompropertyfactory_p.h b/kexi/widget/kexicustompropertyfactory_p.h index f1ec4b0f..49a4066b 100644 --- a/kexi/widget/kexicustompropertyfactory_p.h +++ b/kexi/widget/kexicustompropertyfactory_p.h @@ -28,16 +28,17 @@ class KexiImagePropertyEdit : public KoProperty::PixmapEdit { Q_OBJECT + TQ_OBJECT public: KexiImagePropertyEdit(KoProperty::Property *property, - QWidget *parent=0, const char *name=0); + TQWidget *tqparent=0, const char *name=0); virtual ~KexiImagePropertyEdit(); - virtual QVariant value() const; - virtual void setValue(const QVariant &value, bool emitChange=true); - virtual void drawViewer(QPainter *p, const QColorGroup &cg, const QRect &r, - const QVariant &value); + virtual TQVariant value() const; + virtual void setValue(const TQVariant &value, bool emitChange=true); + virtual void drawViewer(TQPainter *p, const TQColorGroup &cg, const TQRect &r, + const TQVariant &value); public slots: virtual void selectPixmap(); @@ -56,16 +57,17 @@ class KexiImagePropertyEdit : public KoProperty::PixmapEdit class KexiIdentifierPropertyEdit : public KoProperty::StringEdit { Q_OBJECT + TQ_OBJECT public: KexiIdentifierPropertyEdit(KoProperty::Property *property, - QWidget *parent=0, const char *name=0); + TQWidget *tqparent=0, const char *name=0); virtual ~KexiIdentifierPropertyEdit(); /*! Reimplemented: sets \a value but it is converted to identifier using KexiUtils::string2Identifier(). If \a value is null or empty string, this method has no effect. */ - virtual void setValue(const QVariant &value, bool emitChange=true); + virtual void setValue(const TQVariant &value, bool emitChange=true); }; #endif |