diff options
author | Yann Bodson <yann.bodson@nokia.com> | 2009-08-26 03:28:05 (GMT) |
---|---|---|
committer | Yann Bodson <yann.bodson@nokia.com> | 2009-08-26 03:28:05 (GMT) |
commit | 20e9783d0fc3c71b2a569edda407801aa2e3c371 (patch) | |
tree | 1c7ae5c35acc01e613656bb56338a4a2228c9368 /src/declarative/extra | |
parent | 1a9eeae1ee92516abd2278b0ebf23687ff865cd7 (diff) | |
download | Qt-20e9783d0fc3c71b2a569edda407801aa2e3c371.zip Qt-20e9783d0fc3c71b2a569edda407801aa2e3c371.tar.gz Qt-20e9783d0fc3c71b2a569edda407801aa2e3c371.tar.bz2 |
Use Q_SLOTS and Q_SIGNALS.
Diffstat (limited to 'src/declarative/extra')
-rw-r--r-- | src/declarative/extra/qfxflowview.cpp | 2 | ||||
-rw-r--r-- | src/declarative/extra/qmlsqlquery.h | 4 | ||||
-rw-r--r-- | src/declarative/extra/qmlxmllistmodel.cpp | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/declarative/extra/qfxflowview.cpp b/src/declarative/extra/qfxflowview.cpp index 4af8af9..b2470ba 100644 --- a/src/declarative/extra/qfxflowview.cpp +++ b/src/declarative/extra/qfxflowview.cpp @@ -57,7 +57,7 @@ public: int row() const; int column() const; -signals: +Q_SIGNALS: void posChanged(); private: diff --git a/src/declarative/extra/qmlsqlquery.h b/src/declarative/extra/qmlsqlquery.h index 55e16ac..0f27709 100644 --- a/src/declarative/extra/qmlsqlquery.h +++ b/src/declarative/extra/qmlsqlquery.h @@ -115,13 +115,13 @@ public: QmlList<QmlSqlBind *> *bindings(); const QmlList<QmlSqlBind *> *bindings() const; -public slots: +public Q_SLOTS: void exec(); protected: void timerEvent(QTimerEvent *); -private slots: +private Q_SLOTS: void resetBinds(); void resetQuery(); diff --git a/src/declarative/extra/qmlxmllistmodel.cpp b/src/declarative/extra/qmlxmllistmodel.cpp index 9b74799..816c3fd 100644 --- a/src/declarative/extra/qmlxmllistmodel.cpp +++ b/src/declarative/extra/qmlxmllistmodel.cpp @@ -123,7 +123,7 @@ public: return m_modelData; } -signals: +Q_SIGNALS: void queryCompleted(int queryId, int size); protected: |