aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2021-02-11 15:14:04 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2021-02-11 17:33:26 +0000
commit0b828db194cfb3c0287ab82ec9a3014678d9423f (patch)
tree8179c6b1ab958937c9cbea5bd13d6f1a5ccd6e67
parentc61284e82ff9c5fdb98009ba167ee62239f342ba (diff)
shiboken6: Fix broken tables in the QLocale documentation
Add a newline before the enumeration table. Task-number: PYSIDE-841 Change-Id: I83e81983dd7139c120480cba859e1683a4721c92 Reviewed-by: Christian Tismer <tismer@stackless.com> (cherry picked from commit 69513c4c8bb0aed6976b1b7c884dce10b82dbdb0) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--sources/shiboken6/generator/qtdoc/qtxmltosphinx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/shiboken6/generator/qtdoc/qtxmltosphinx.cpp b/sources/shiboken6/generator/qtdoc/qtxmltosphinx.cpp
index 10a97549d..e96a67932 100644
--- a/sources/shiboken6/generator/qtdoc/qtxmltosphinx.cpp
+++ b/sources/shiboken6/generator/qtdoc/qtxmltosphinx.cpp
@@ -392,7 +392,7 @@ void QtXmlToSphinx::formatCurrentTable()
return;
m_currentTable.setHeaderEnabled(m_tableHasHeader);
m_currentTable.normalize();
- m_output << ensureEndl;
+ m_output << '\n';
m_currentTable.format(m_output);
}