aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorShawn Rutledge <shawn.rutledge@digia.com>2014-05-13 15:29:06 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-06-10 12:12:23 +0200
commitef526f9f332e00a2920b37dc0f715b1cb958597e (patch)
treeefb5278c8ce1a4c6ac35f3c96d74b7c7037bcd4d /src
parent2e4a40a6ccf466802ea6b3a1cbbd85869228e3fc (diff)
add missing signal declaration in Exposing Attributes to QML example
Task-number: QTBUG-33985 Change-Id: Id6a2a51467ee5de44bf51fb48e3f9346a832f8f2 Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'src')
-rw-r--r--src/qml/doc/src/cppintegration/exposecppattributes.qdoc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qml/doc/src/cppintegration/exposecppattributes.qdoc b/src/qml/doc/src/cppintegration/exposecppattributes.qdoc
index f02c3da6af..8f883d9f42 100644
--- a/src/qml/doc/src/cppintegration/exposecppattributes.qdoc
+++ b/src/qml/doc/src/cppintegration/exposecppattributes.qdoc
@@ -106,6 +106,8 @@ public:
QString author() const {
return m_author;
}
+signals:
+ void authorChanged();
private:
QString m_author;
};