From c229b32bf7567adebd08a0b1671b0fe9241d3945 Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Tue, 6 Mar 2018 09:43:35 +0100 Subject: QtCore: Fix documentation modifications - Remove documentation modification on QUrl. The text in Qt is identical. - Remove C++ 'new' from the QHistoryState code snippet Task-number: PYSIDE-363 Change-Id: I4c0d4fb9b426e24ce9352c954bcd5765d89aeca8 Reviewed-by: Alexandru Croitor --- sources/pyside2/PySide2/QtCore/typesystem_core_common.xml | 9 +++------ 1 file 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 3b9986bab..336087619 100644 --- a/sources/pyside2/PySide2/QtCore/typesystem_core_common.xml +++ b/sources/pyside2/PySide2/QtCore/typesystem_core_common.xml @@ -2373,9 +2373,6 @@ - - <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 "http://bühler.example.com" would be sent to the server as "http://xn--bhler-kva.example.com/List%20of%20applicants.xml".</para> - @@ -3979,9 +3976,9 @@ <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) -- cgit v1.2.3