summaryrefslogtreecommitdiffstats
path: root/lib/koproperty/editors/timeedit.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/koproperty/editors/timeedit.h')
-rw-r--r--lib/koproperty/editors/timeedit.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/lib/koproperty/editors/timeedit.h b/lib/koproperty/editors/timeedit.h
index d41f46334..1dbec46b1 100644
--- a/lib/koproperty/editors/timeedit.h
+++ b/lib/koproperty/editors/timeedit.h
@@ -23,31 +23,32 @@
#include "../widget.h"
-class QTimeEdit;
+class TQTimeEdit;
namespace KoProperty {
class KOPROPERTY_EXPORT TimeEdit : public Widget
{
Q_OBJECT
+ TQ_OBJECT
public:
- TimeEdit(Property *property, QWidget *parent=0, const char *name=0);
+ TimeEdit(Property *property, TQWidget *tqparent=0, const char *name=0);
virtual ~TimeEdit();
- 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);
protected slots:
- void slotValueChanged(const QTime &time);
+ void slotValueChanged(const TQTime &time);
private:
- QTimeEdit *m_edit;
+ TQTimeEdit *m_edit;
};
}