aboutsummaryrefslogtreecommitdiffstats
path: root/sources
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2018-02-21 15:10:06 +0100
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2018-02-21 14:42:46 +0000
commitb431a0701cfdf749411b67f55370e8023e87db7c (patch)
tree05f5793e3a4f6042b088412f9671989c1e5ac9d0 /sources
parentb73151cb39f323240ffe9991f8bae0dad9be486c (diff)
QtDocGenerator: Indent the function list container
Fix warnings: Content block expected for the "container" directive; none found Task-number: PYSIDE-363 Change-Id: Ie855ac355478060c0d280413a31dffcb03cf3935 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'sources')
-rw-r--r--sources/shiboken2/generator/qtdoc/qtdocgenerator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/shiboken2/generator/qtdoc/qtdocgenerator.cpp b/sources/shiboken2/generator/qtdoc/qtdocgenerator.cpp
index a40f35432..4a60579a9 100644
--- a/sources/shiboken2/generator/qtdoc/qtdocgenerator.cpp
+++ b/sources/shiboken2/generator/qtdoc/qtdocgenerator.cpp
@@ -1382,7 +1382,7 @@ void QtDocGenerator::writeFunctionBlock(QTextStream& s, const QString& title, QS
s << ".. container:: function_list" << endl << endl;
Indentation indentation(INDENT);
for (const QString &func : qAsConst(functions))
- s << '*' << INDENT << func << endl;
+ s << INDENT << '*' << ' ' << func << endl;
s << endl << endl;
}