summaryrefslogtreecommitdiff
path: root/src/qdoc/qmlcodeparser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qdoc/qmlcodeparser.cpp')
-rw-r--r--src/qdoc/qmlcodeparser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qdoc/qmlcodeparser.cpp b/src/qdoc/qmlcodeparser.cpp
index 22c1d1903..1e7edee59 100644
--- a/src/qdoc/qmlcodeparser.cpp
+++ b/src/qdoc/qmlcodeparser.cpp
@@ -133,7 +133,7 @@ const QSet<QString> &QmlCodeParser::topicCommands()
This function blanks out the section of the \a str beginning at \a idx
and running for \a n characters.
*/
-static void replaceWithSpace(QString &str, int idx, int n)
+void replaceWithSpace(QString &str, int idx, int n) // Also used in qmlcodemarker.cpp.
{
QChar *data = str.data() + idx;
const QChar space(QLatin1Char(' '));