From aea74dcaee2d6930e4d69cbda83088703b45816e Mon Sep 17 00:00:00 2001 From: Martin Smith Date: Tue, 14 Apr 2015 11:27:59 +0200 Subject: qdoc: Properly document "private" signals MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When a signal declaration is marked with QSignalPrivate, This note is included in its documentation: "Note: This is a private signal. It must not be emitted by the user." For Notifier signals, [see note] is appended to the signature line, and the Note is printed below the list. Change-Id: Ie792894ace56cda47fd9a45af9c732f408ac45f6 Task-number: QTBUG-45535 Reviewed-by: Topi Reiniƶ --- src/tools/qdoc/node.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/tools/qdoc/node.cpp') diff --git a/src/tools/qdoc/node.cpp b/src/tools/qdoc/node.cpp index 24c64538c32..230ce50df80 100644 --- a/src/tools/qdoc/node.cpp +++ b/src/tools/qdoc/node.cpp @@ -1804,6 +1804,7 @@ FunctionNode::FunctionNode(InnerNode *parent, const QString& name) ove(false), reimp(false), attached_(false), + privateSignal_(false), rf(0), ap(0) { @@ -1824,6 +1825,7 @@ FunctionNode::FunctionNode(Type type, InnerNode *parent, const QString& name, bo ove(false), reimp(false), attached_(attached), + privateSignal_(false), rf(0), ap(0) { -- cgit v1.2.3