summaryrefslogtreecommitdiffstats
path: root/sip/dcop/typedefs.sip
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-03 22:23:44 -0600
committerTimothy Pearson <[email protected]>2011-12-03 22:23:44 -0600
commit203ba231d0276943aae36111f9ec1e949f3c6a4c (patch)
treef039f7a5b5fc2da88a96876971bac580d87f6788 /sip/dcop/typedefs.sip
parentfd35f4a8382b7d223bc0325b9ca3f88515778aa0 (diff)
downloadpytde-203ba231d0276943aae36111f9ec1e949f3c6a4c.tar.gz
pytde-203ba231d0276943aae36111f9ec1e949f3c6a4c.zip
Initial TQt conversion
Diffstat (limited to 'sip/dcop/typedefs.sip')
-rw-r--r--sip/dcop/typedefs.sip6
1 files changed, 3 insertions, 3 deletions
diff --git a/sip/dcop/typedefs.sip b/sip/dcop/typedefs.sip
index ba1f4c5..8f9061b 100644
--- a/sip/dcop/typedefs.sip
+++ b/sip/dcop/typedefs.sip
@@ -33,7 +33,7 @@ typedef bool Bool;
typedef long off_t;
-/*%MappedType QValueList<pid_t>
+/*%MappedType TQValueList<pid_t>
//converts a Python list of long
{
%TypeHeaderCode
@@ -69,7 +69,7 @@ typedef long off_t;
%End
%ConvertToTypeCode
- // Convert a Python list of long to a QValueList<long> on the heap.
+ // Convert a Python list of long to a TQValueList<long> on the heap.
if (sipIsErr == NULL)
return PyList_Check(sipPy);
@@ -81,7 +81,7 @@ typedef long off_t;
return 0;
}
- QValueList<pid_t> *qvl = new QValueList<pid_t>;
+ TQValueList<pid_t> *qvl = new TQValueList<pid_t>;
PyErr_Clear();