diff options
Diffstat (limited to 'examples/declarative/support/contact.h')
-rw-r--r-- | examples/declarative/support/contact.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/examples/declarative/support/contact.h b/examples/declarative/support/contact.h index c403f8b..7b25869 100644 --- a/examples/declarative/support/contact.h +++ b/examples/declarative/support/contact.h @@ -15,8 +15,7 @@ #define CONTACT_H #include <qml.h> -#include <QtGui> - +#include <QtCore> class Address : public QObject { @@ -105,7 +104,7 @@ public: Q_PROPERTY(QList<PhoneNumber *>* numbers READ numbers); QList<PhoneNumber *>* numbers() { return &m_numbers; } - + void addEmail(QString&); void addAddress(Address*); void addNumber(PhoneNumber*); |