aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside2/PySide2
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2018-03-07 14:53:42 +0100
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2018-03-07 14:53:48 +0100
commitac5d069b678bb95cd509e22c8ae9f5ef4ae0f838 (patch)
treeae87a0b8faf8d72bb4c3bf1013ae26bc8554c155 /sources/pyside2/PySide2
parentdf7c72e63c6b7aecee156db2eff726bcfb89977e (diff)
parent507beab92fcb39e9b47d465a51d649f7ea6935d5 (diff)
Merge remote-tracking branch 'origin/5.9' into dev
Diffstat (limited to 'sources/pyside2/PySide2')
-rw-r--r--sources/pyside2/PySide2/QtCore/typesystem_core_common.xml9
1 files changed, 3 insertions, 6 deletions
diff --git a/sources/pyside2/PySide2/QtCore/typesystem_core_common.xml b/sources/pyside2/PySide2/QtCore/typesystem_core_common.xml
index 11111d96c..554111e35 100644
--- a/sources/pyside2/PySide2/QtCore/typesystem_core_common.xml
+++ b/sources/pyside2/PySide2/QtCore/typesystem_core_common.xml
@@ -2374,9 +2374,6 @@
<enum-type name="UrlFormattingOption" />
<enum-type name="UserInputResolutionOption" flags="UserInputResolutionOptions"/>
<enum-type name="ParsingMode"/>
- <modify-documentation xpath='description/para[3]'>
- &lt;para>URLs can be represented in two forms: encoded or unencoded. The unencoded representation is suitable for showing to users, but the encoded representation is typically what you would send to a web server. For example, the unencoded URL &quot;http://bühler.example.com&quot; would be sent to the server as &quot;http://xn--bhler-kva.example.com/List%20of%20applicants.xml&quot;.&lt;/para>
- </modify-documentation>
<extra-includes>
<include file-name="QStringList" location="global"/>
</extra-includes>
@@ -3989,9 +3986,9 @@
<modify-documentation xpath='description/code'>
&lt;code>machine = QStateMachine()
-s1 = new QState()
-s11 = new QState(s1)
-s12 = new QState(s1)
+s1 = QState()
+s11 = QState(s1)
+s12 = QState(s1)
s1h = QHistoryState(s1)
s1h.setDefaultState(s11)