summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sip/tdeui/keditlistbox.sip4
-rw-r--r--sip/tdeui/qxembed.sip2
2 files changed, 3 insertions, 3 deletions
diff --git a/sip/tdeui/keditlistbox.sip b/sip/tdeui/keditlistbox.sip
index 4c902a9..6fd3391 100644
--- a/sip/tdeui/keditlistbox.sip
+++ b/sip/tdeui/keditlistbox.sip
@@ -114,7 +114,7 @@ public:
sipCpp->insertStrList (strings, n, a1);
Py_END_ALLOW_THREADS
- sipFree((ANY *)strings);
+ sipFree((void *)strings);
%End
void insertItem (const TQString&, int = -1);
@@ -194,7 +194,7 @@ const char **PyTQtListToArray(PyObject *lst)
if ((s = PyString_AsString(PyList_GetItem(lst,i))) == NULL)
{
- sipFree((ANY *)str);
+ sipFree((void *)str);
return NULL;
}
diff --git a/sip/tdeui/qxembed.sip b/sip/tdeui/qxembed.sip
index 7ea37e0..e4af5f3 100644
--- a/sip/tdeui/qxembed.sip
+++ b/sip/tdeui/qxembed.sip
@@ -72,7 +72,7 @@ public:
sipRes = QXEmbed::processClientCmdline (a0, n, strings);
Py_END_ALLOW_THREADS
- sipFree((ANY *)strings);
+ sipFree((void *)strings);
%End