diff options
author | J-P Nurmi <jpnurmi@theqtcompany.com> | 2015-08-29 18:35:12 +0200 |
---|---|---|
committer | J-P Nurmi <jpnurmi@theqtcompany.com> | 2015-08-31 21:25:13 +0000 |
commit | 9ee31a6ae852eb347951e371958dd435409c9941 (patch) | |
tree | e8de7601c6a766bd09cd0031eda111d90c347886 | |
parent | 7cf223c6db1fe3d2f4d58df955973426f69b58a8 (diff) | |
download | qtdeclarative-9ee31a6ae852eb347951e371958dd435409c9941.tar.gz qtdeclarative-9ee31a6ae852eb347951e371958dd435409c9941.tar.bz2 qtdeclarative-9ee31a6ae852eb347951e371958dd435409c9941.zip |
Doc: fix the "Grouped Properties" example snippet
Change-Id: Id41084b5abd7a83aab519a73b7377deb30302511
Task-number: QTBUG-48009
Reviewed-by: Mitch Curtis <mitch.curtis@theqtcompany.com>
-rw-r--r-- | src/qml/doc/src/cppintegration/exposecppattributes.qdoc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/doc/src/cppintegration/exposecppattributes.qdoc b/src/qml/doc/src/cppintegration/exposecppattributes.qdoc index e1db5c9d5..f4f688520 100644 --- a/src/qml/doc/src/cppintegration/exposecppattributes.qdoc +++ b/src/qml/doc/src/cppintegration/exposecppattributes.qdoc @@ -328,11 +328,11 @@ public: : QObject(parent), m_author(new MessageAuthor(this)) { } - Message *author() const { + MessageAuthor *author() const { return m_author; } private: - Message *m_author; + MessageAuthor *m_author; }; \endcode |