aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside2
diff options
context:
space:
mode:
authorVenugopal Shivashankar <Venugopal.Shivashankar@qt.io>2019-06-19 14:26:32 +0200
committerVenugopal Shivashankar <Venugopal.Shivashankar@qt.io>2019-06-19 15:49:14 +0200
commit2bc0decca59d867dbf893e34cf9f2ff9745ab603 (patch)
treedb4fd923e2a2bba91cc9597ed7f46457ea159e8e /sources/pyside2
parent3a5dc98e1fcd3ac42c92be76689e250dea53d0a0 (diff)
Doc: Fix minor issues
- Removed links to old qml tutorials - Fixed a note with overflowing text - Fixed the order of chapters list in a tutorial Change-Id: Ic42c35271dd161235ed8b08f596100e104f6139e Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
Diffstat (limited to 'sources/pyside2')
-rw-r--r--sources/pyside2/doc/tutorials/basictutorial/widgets.rst3
-rw-r--r--sources/pyside2/doc/tutorials/datavisualize/index.rst8
-rw-r--r--sources/pyside2/doc/tutorials/qmlapp/qmlapplication.rst3
3 files changed, 8 insertions, 6 deletions
diff --git a/sources/pyside2/doc/tutorials/basictutorial/widgets.rst b/sources/pyside2/doc/tutorials/basictutorial/widgets.rst
index 80c137cac..c864e3d47 100644
--- a/sources/pyside2/doc/tutorials/basictutorial/widgets.rst
+++ b/sources/pyside2/doc/tutorials/basictutorial/widgets.rst
@@ -32,8 +32,7 @@ After the creation of the application object, we have created a
# This HTML approach will be valid too!
label = QLabel("<font color=red size=40>Hello World!</font>")
-.. note:: After the creation of the label, we are calling the
-method `show()` to show the label.
+.. note:: After creating the label, we call `show()` on it.
Finally, we call `app.exec_()` to enter the Qt main loop and start
to execute the Qt code. In reality, it is only here where the label
diff --git a/sources/pyside2/doc/tutorials/datavisualize/index.rst b/sources/pyside2/doc/tutorials/datavisualize/index.rst
index 750012d84..ff18c654e 100644
--- a/sources/pyside2/doc/tutorials/datavisualize/index.rst
+++ b/sources/pyside2/doc/tutorials/datavisualize/index.rst
@@ -14,9 +14,13 @@ visualize data from a CSV in a line chart.
.. toctree::
:glob:
:titlesonly:
- :reversed:
- *
+ read*
+ filter*
+ add_main*
+ add_tab*
+ add_chart*
+ plot*
You can download the sources from :download:`here <datavisualize.tar.bz2>`.
diff --git a/sources/pyside2/doc/tutorials/qmlapp/qmlapplication.rst b/sources/pyside2/doc/tutorials/qmlapp/qmlapplication.rst
index 78bae94a8..0cb296071 100644
--- a/sources/pyside2/doc/tutorials/qmlapp/qmlapplication.rst
+++ b/sources/pyside2/doc/tutorials/qmlapp/qmlapplication.rst
@@ -129,5 +129,4 @@ Related information
********************
* `QML Reference <https://doc.qt.io/qt-5/qmlreference.html>`_
-* :doc:`../qmltutorial/index`
-* :doc:`../qmladvancedtutorial/index`
+* :doc:`../qmlintegration/qmlintegration`