aboutsummaryrefslogtreecommitdiffstats
path: root/examples/qml/tutorials/extending-qml/chapter2-methods/doc
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2025-09-18 14:02:54 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2025-09-18 18:46:05 +0200
commit8d89822c5fa521462661c5eb96e7de07b4926c85 (patch)
treeaa54eced0115b75e7ac62af39416b769563f618c /examples/qml/tutorials/extending-qml/chapter2-methods/doc
parent85fcf0e17a7e0d402b80bf1c7ca718744f96c446 (diff)
Documentation: Fix errors generating the extending QML tutorial documentation
Amends 5b19e261d5a4d6c28ad25f4bb29a0d5abcd1c947. Task-number: PYSIDE-2206 Pick-to: 6.10 Change-Id: I80bac199d232f6ef4de7da63ebd98645da6fa3c0 Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
Diffstat (limited to 'examples/qml/tutorials/extending-qml/chapter2-methods/doc')
-rw-r--r--examples/qml/tutorials/extending-qml/chapter2-methods/doc/chapter2-methods.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/qml/tutorials/extending-qml/chapter2-methods/doc/chapter2-methods.rst b/examples/qml/tutorials/extending-qml/chapter2-methods/doc/chapter2-methods.rst
index c192fb9b6..0daaab9a8 100644
--- a/examples/qml/tutorials/extending-qml/chapter2-methods/doc/chapter2-methods.rst
+++ b/examples/qml/tutorials/extending-qml/chapter2-methods/doc/chapter2-methods.rst
@@ -5,10 +5,10 @@ This is the second of a series of 6 examples forming a tutorial about extending
QML with Python.
Suppose we want ``PieChart`` to have a ``clearChart()`` method that erases the
-chart and then emits a ``chartCleared`` signal. Our ``app.qml`` would be able
+chart and then emits a ``chartCleared`` signal. Our ``App.qml`` would be able
to call ``clearChart()`` and receive ``chartCleared()`` signals like this:
-.. literalinclude:: app.qml
+.. literalinclude:: Charts/App.qml
:lineno-start: 4
:lines: 4-32