summaryrefslogtreecommitdiffstats
path: root/sip/tdecore
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2023-01-08 11:55:55 +0100
committerSlávek Banko <slavek.banko@axis.cz>2023-01-23 00:52:28 +0100
commitcddd660ca43dbe5d4ce0f7ed6bacee48ea46da93 (patch)
tree277dba53239d6367cf2946458757600caf6e82a5 /sip/tdecore
parent79ced6fbbdda1158aef437760ee0455fb9a9016d (diff)
downloadpytde-cddd660ca43dbe5d4ce0f7ed6bacee48ea46da93.tar.gz
pytde-cddd660ca43dbe5d4ce0f7ed6bacee48ea46da93.zip
Update after renaming qt => tqt in PyTQt module.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'sip/tdecore')
-rw-r--r--sip/tdecore/tdecoremod.sip.in2
-rw-r--r--sip/tdecore/tdestartupinfo.sip8
2 files changed, 5 insertions, 5 deletions
diff --git a/sip/tdecore/tdecoremod.sip.in b/sip/tdecore/tdecoremod.sip.in
index 01f1fde..4640ffc 100644
--- a/sip/tdecore/tdecoremod.sip.in
+++ b/sip/tdecore/tdecoremod.sip.in
@@ -28,7 +28,7 @@
%Module tdecore
-%Import qt/qtmod.sip
+%Import tqt/tqtmod.sip
%Import dcopmod.sip
%Include bytearray.sip
diff --git a/sip/tdecore/tdestartupinfo.sip b/sip/tdecore/tdestartupinfo.sip
index 95e6e16..57e7113 100644
--- a/sip/tdecore/tdestartupinfo.sip
+++ b/sip/tdecore/tdestartupinfo.sip
@@ -254,24 +254,24 @@ private:
return 0;
}
- TQValueList<pid_t> *qvl = new TQValueList<pid_t>;
+ TQValueList<pid_t> *tqvl = new TQValueList<pid_t>;
PyErr_Clear();
for (int i = 0; i < PyList_GET_SIZE(sipPy); ++i)
{
- qvl -> append((pid_t)PyLong_AsLong(PyList_GET_ITEM(sipPy,i)));
+ tqvl -> append((pid_t)PyLong_AsLong(PyList_GET_ITEM(sipPy,i)));
if (PyErr_Occurred() != NULL)
{
- delete qvl;
+ delete tqvl;
*sipIsErr = 1;
return 0;
}
}
- *sipCppPtr = qvl;
+ *sipCppPtr = tqvl;
return 1;
%End