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/qml | |
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/qml')
-rw-r--r-- | src/declarative/qml/qmlbindingoptimizations_p.h | 2 | ||||
-rw-r--r-- | src/declarative/qml/qmlcomponentjs_p.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/declarative/qml/qmlbindingoptimizations_p.h b/src/declarative/qml/qmlbindingoptimizations_p.h index ab264c7..4862007 100644 --- a/src/declarative/qml/qmlbindingoptimizations_p.h +++ b/src/declarative/qml/qmlbindingoptimizations_p.h @@ -99,7 +99,7 @@ public: virtual void setEnabled(bool); virtual int propertyIndex(); -private slots: +private Q_SLOTS: virtual void update(); private: diff --git a/src/declarative/qml/qmlcomponentjs_p.h b/src/declarative/qml/qmlcomponentjs_p.h index 8c69b5f..cee3035 100644 --- a/src/declarative/qml/qmlcomponentjs_p.h +++ b/src/declarative/qml/qmlcomponentjs_p.h @@ -87,7 +87,7 @@ Q_SIGNALS: void isErrorChanged(); void isReadyChanged(); void isLoadingChanged(); -private slots: +private Q_SLOTS: void statusChange(QmlComponent::Status newStatus); }; |