aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/doc/tutorials/basictutorial
diff options
context:
space:
mode:
authorCristián Maureira-Fredes <cristian.maureira-fredes@qt.io>2023-03-16 14:59:15 +0100
committerCristián Maureira-Fredes <cristian.maureira-fredes@qt.io>2023-03-16 16:38:54 +0100
commitd8c628599d1145dd5b871b325f38f7990f7383ed (patch)
tree2bcdb8e4f198ed1f4717ed44ff00f27e8f1c684d /sources/pyside6/doc/tutorials/basictutorial
parentbe64f1cc97875b99811f8205e44265cafd846837 (diff)
doc: adjust usage of -uic and -rcc tools
We encourage people to use the option '-o' rather than '>' to avoid having output messages inside the generated file. Change-Id: Ie45303265c8f391c4e54e0e2af9d7e810a0797aa Pick-to: 6.2 6.4 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> Reviewed-by: Adrian Herrmann <adrian.herrmann@qt.io>
Diffstat (limited to 'sources/pyside6/doc/tutorials/basictutorial')
-rw-r--r--sources/pyside6/doc/tutorials/basictutorial/qrcfiles.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/pyside6/doc/tutorials/basictutorial/qrcfiles.rst b/sources/pyside6/doc/tutorials/basictutorial/qrcfiles.rst
index 477c5b738..5b397bd0b 100644
--- a/sources/pyside6/doc/tutorials/basictutorial/qrcfiles.rst
+++ b/sources/pyside6/doc/tutorials/basictutorial/qrcfiles.rst
@@ -67,7 +67,7 @@ a Python class containing the binary information about the resources
To do this, we need to run::
- pyside6-rcc icons.rc -o rc_icons.py
+ pyside6-rcc icons.qrc -o rc_icons.py
The `-o` option lets you specify the output filename,
which is `rc_icons.py` in this case.