diff options
author | Michele Calgaro <[email protected]> | 2024-01-08 11:54:36 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-10 10:01:39 +0900 |
commit | c668d2b1b34ee856e70874159c42892a4c9c8af4 (patch) | |
tree | ab4f1231cb46ad964d2b20c2a865d46d87f223bd /siplib | |
parent | 62beed758e74fd9d475ddfebfd0ab3e7c0e94ec1 (diff) | |
download | sip4-tqt-c668d2b1b34ee856e70874159c42892a4c9c8af4.tar.gz sip4-tqt-c668d2b1b34ee856e70874159c42892a4c9c8af4.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit e44eaa6ec01b8a2a0844ecc960f843eca1c4f645)
Diffstat (limited to 'siplib')
-rw-r--r-- | siplib/tqtlib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/siplib/tqtlib.c b/siplib/tqtlib.c index 7b8bb67..df35d6c 100644 --- a/siplib/tqtlib.c +++ b/siplib/tqtlib.c @@ -569,7 +569,7 @@ int sip_api_save_slot(sipSlot *sp, PyObject *rxObj, const char *slot) * because they are generated on the fly and we can't take a * reference as that may keep the instance (ie. self) alive. * We therefore treat it as if the user had specified the slot - * at "obj, TQT_SLOT('meth()')" rather than "obj.meth" (see below). + * at "obj, TQ_SLOT('meth()')" rather than "obj.meth" (see below). */ const char *meth; @@ -610,7 +610,7 @@ int sip_api_save_slot(sipSlot *sp, PyObject *rxObj, const char *slot) { /* * The user has decided to connect a Python signal to a TQt slot and - * specified the slot as "obj, TQT_SLOT('meth()')" rather than "obj.meth". + * specified the slot as "obj, TQ_SLOT('meth()')" rather than "obj.meth". */ char *tail; |