summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhjk <hjk@theqtcompany.com>2016-04-07 19:02:24 +0200
committerhjk <hjk@theqtcompany.com>2016-04-08 05:51:13 +0000
commitb83999bfe04d185cbe45a81658bd21bb1b22a532 (patch)
tree1b34d040617d2188a731dfdbc35add108b73cf91
parent7e07164e4ce089255e413b4cd2b2d1378ce13e5c (diff)
QDoc: Add a space between "Note:" and "Signal"
... in the "Note:Signal ... is overloaded in this class." hint. Change-Id: I4020a43613f655170cf88b03d1c689f3eb3584e3 Reviewed-by: Martin Smith <martin.smith@theqtcompany.com>
-rw-r--r--src/qdoc/generator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qdoc/generator.cpp b/src/qdoc/generator.cpp
index 4286aa692..f68b578d3 100644
--- a/src/qdoc/generator.cpp
+++ b/src/qdoc/generator.cpp
@@ -1648,7 +1648,7 @@ void Generator::generateOverloadedSignal(const Node* node, CodeMarker* marker)
<< Atom(Atom::FormattingLeft,ATOM_FORMATTING_BOLD)
<< "Note:"
<< Atom(Atom::FormattingRight,ATOM_FORMATTING_BOLD)
- << "Signal "
+ << " Signal "
<< Atom(Atom::FormattingLeft,ATOM_FORMATTING_ITALIC)
<< node->name()
<< Atom(Atom::FormattingRight,ATOM_FORMATTING_ITALIC)