diff options
author | Olivier Goffart <olivier.goffart@nokia.com> | 2010-08-18 16:19:19 (GMT) |
---|---|---|
committer | Olivier Goffart <olivier.goffart@nokia.com> | 2010-08-19 13:21:26 (GMT) |
commit | 380b3dbd3ec3de31fb9be72a5cfd02543d291a62 (patch) | |
tree | a3f2f02792fa60ea50f745f36fd6cbdec3fe9fa5 /src | |
parent | e82b5535c170c82d3ba7369eb1957f8d264300e2 (diff) | |
download | Qt-380b3dbd3ec3de31fb9be72a5cfd02543d291a62.zip Qt-380b3dbd3ec3de31fb9be72a5cfd02543d291a62.tar.gz Qt-380b3dbd3ec3de31fb9be72a5cfd02543d291a62.tar.bz2 |
QDateEdit/QTimeEdit: remove duplicate properties.
They were hidding QDateTimeEdit properties.
(And their NOTIFY signal did not work correctly)
Reviewed-by: Joao
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/widgets/qdatetimeedit.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gui/widgets/qdatetimeedit.h b/src/gui/widgets/qdatetimeedit.h index 81bbdb9..d2f315a 100644 --- a/src/gui/widgets/qdatetimeedit.h +++ b/src/gui/widgets/qdatetimeedit.h @@ -206,7 +206,6 @@ private: class Q_GUI_EXPORT QTimeEdit : public QDateTimeEdit { Q_OBJECT - Q_PROPERTY(QTime time READ time WRITE setTime NOTIFY timeChanged USER true) public: QTimeEdit(QWidget *parent = 0); QTimeEdit(const QTime &time, QWidget *parent = 0); @@ -215,7 +214,6 @@ public: class Q_GUI_EXPORT QDateEdit : public QDateTimeEdit { Q_OBJECT - Q_PROPERTY(QDate date READ date WRITE setDate NOTIFY dateChanged USER true) public: QDateEdit(QWidget *parent = 0); QDateEdit(const QDate &date, QWidget *parent = 0); |