aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2022-03-22 16:23:26 +0100
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2022-03-23 08:25:05 +0100
commit6688ec92f4b73a2553fbda61d49ace0e49e8883d (patch)
treeb76c819337cc40f4689d783db9eb9392ed446a57
parentc80d5b575e096123b85324c6376aa7f97c0bcf5c (diff)
Documentation: Link the Tutorial from the Signal/Slot reference pages
Pick-to: 6.2 Fixes: PYSIDE-1863 Change-Id: I7bf2c04ad5a5ab7b5bb29b082ee9d3fbf3b51c2a Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
-rw-r--r--sources/pyside6/doc/extras/QtCore.Signal.rst1
-rw-r--r--sources/pyside6/doc/extras/QtCore.Slot.rst2
-rw-r--r--sources/pyside6/doc/tutorials/basictutorial/signals_and_slots.rst2
3 files changed, 5 insertions, 0 deletions
diff --git a/sources/pyside6/doc/extras/QtCore.Signal.rst b/sources/pyside6/doc/extras/QtCore.Signal.rst
index 2f830d0c4..b50c34148 100644
--- a/sources/pyside6/doc/extras/QtCore.Signal.rst
+++ b/sources/pyside6/doc/extras/QtCore.Signal.rst
@@ -58,3 +58,4 @@ may refer to the emitted values by name.
`args` is the arguments to pass to any connected slots, if any.
+.. seealso:: :ref:`signals-and-slots`
diff --git a/sources/pyside6/doc/extras/QtCore.Slot.rst b/sources/pyside6/doc/extras/QtCore.Slot.rst
index 6cc5e8079..55c3d9fb7 100644
--- a/sources/pyside6/doc/extras/QtCore.Slot.rst
+++ b/sources/pyside6/doc/extras/QtCore.Slot.rst
@@ -34,6 +34,8 @@ Detailed Description
The optional named argument ``result`` specifies the return type.
+ .. seealso:: :ref:`signals-and-slots`
+
Q_INVOKABLE
-----------
diff --git a/sources/pyside6/doc/tutorials/basictutorial/signals_and_slots.rst b/sources/pyside6/doc/tutorials/basictutorial/signals_and_slots.rst
index 52b79f38d..470b4ab70 100644
--- a/sources/pyside6/doc/tutorials/basictutorial/signals_and_slots.rst
+++ b/sources/pyside6/doc/tutorials/basictutorial/signals_and_slots.rst
@@ -1,3 +1,5 @@
+.. _signals-and-slots:
+
Signals and Slots
=================