Doc: Match Python code in manual with code generated by wizards

Task-number: QTCREATORBUG-27560
Change-Id: Iff442279b99e05a577dc791ca88345a81d7bf564
Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
This commit is contained in:
Leena Miettinen
2022-07-08 11:44:36 +02:00
parent a427527328
commit 5edfb1b7e5

View File

@@ -72,7 +72,6 @@
\badcode \badcode
import sys import sys
from pathlib import Path
from PySide6.QtWidgets import QApplication, QWidget from PySide6.QtWidgets import QApplication, QWidget
\endcode \endcode
@@ -179,9 +178,8 @@
to QGuiApplication and QQmlApplicationEngine: to QGuiApplication and QQmlApplicationEngine:
\badcode \badcode
import os
from pathlib import Path
import sys import sys
from pathlib import Path
from PySide6.QtGui import QGuiApplication from PySide6.QtGui import QGuiApplication
from PySide6.QtQml import QQmlApplicationEngine from PySide6.QtQml import QQmlApplicationEngine
@@ -201,7 +199,8 @@
\badcode \badcode
engine = QQmlApplicationEngine() engine = QQmlApplicationEngine()
engine.load(os.fspath(Path(__file__).resolve().parent / "main.qml")) qml_file = Path(__file__).resolve().parent / "main.qml"
engine.load(qml_file)
\endcode \endcode
Finally, the wizard adds code that checks whether the file was successfully Finally, the wizard adds code that checks whether the file was successfully