summaryrefslogtreecommitdiffstats
path: root/sphinx/specification_files.rst
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2023-01-03 01:01:50 +0100
committerSlávek Banko <slavek.banko@axis.cz>2023-01-22 13:21:17 +0100
commit0f630aff5c42d03eb301cd3fc5faff80d9c3c727 (patch)
tree94c873376a07783255db1f419f5d17bfa5151128 /sphinx/specification_files.rst
parent3e5815bce63e9e476bdeb58cbe230239622e1ba5 (diff)
downloadsip4-tqt-0f630aff5c42d03eb301cd3fc5faff80d9c3c727.tar.gz
sip4-tqt-0f630aff5c42d03eb301cd3fc5faff80d9c3c727.zip
Entry step for renaming PyTQt module libraries from qt* to tqt*.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'sphinx/specification_files.rst')
-rw-r--r--sphinx/specification_files.rst22
1 files changed, 11 insertions, 11 deletions
diff --git a/sphinx/specification_files.rst b/sphinx/specification_files.rst
index ff352f4..baa18f5 100644
--- a/sphinx/specification_files.rst
+++ b/sphinx/specification_files.rst
@@ -268,7 +268,7 @@ file.
*argument* ::= [
*type* [*name*] [*argument-annotations*] [*default-value*] |
:stype:`SIP_ANYSLOT` [*default-value*] |
- :stype:`SIP_QOBJECT` |
+ :stype:`SIP_TQOBJECT` |
:stype:`SIP_RXOBJ_CON` |
:stype:`SIP_RXOBJ_DIS` |
:stype:`SIP_SIGNAL` [*default-value*] |
@@ -422,24 +422,24 @@ This is a ``PyObject *`` that is a Python tuple object.
This is a ``PyObject *`` that is a Python type object.
-.. sip-type:: SIP_QOBJECT
+.. sip-type:: SIP_TQOBJECT
-This is a ``QObject *`` that is a C++ instance of a class derived from Qt's
-``QObject`` class.
+This is a ``TQObject *`` that is a C++ instance of a class derived from TQt's
+``TQObject`` class.
.. sip-type:: SIP_RXOBJ_CON
-This is a ``QObject *`` that is a C++ instance of a class derived from Qt's
-``QObject`` class. It is used as the type of the receiver instead of ``const
-QObject *`` in functions that implement a connection to a slot.
+This is a ``TQObject *`` that is a C++ instance of a class derived from TQt's
+``TQObject`` class. It is used as the type of the receiver instead of ``const
+TQObject *`` in functions that implement a connection to a slot.
.. sip-type:: SIP_RXOBJ_DIS
-This is a ``QObject *`` that is a C++ instance of a class derived from Qt's
-``QObject`` class. It is used as the type of the receiver instead of ``const
-QObject *`` in functions that implement a disconnection from a slot.
+This is a ``TQObject *`` that is a C++ instance of a class derived from TQt's
+``TQObject`` class. It is used as the type of the receiver instead of ``const
+TQObject *`` in functions that implement a disconnection from a slot.
.. sip-type:: SIP_SIGNAL
@@ -468,7 +468,7 @@ signal to a slot. The signal is emitted when the keyboard accelerator is
activated and it has a single integer argument that is the ID of the
accelerator. The C++ signature is::
- bool connectItem(int id, const QObject *receiver, const char *member);
+ bool connectItem(int id, const TQObject *receiver, const char *member);
The corresponding SIP specification is::