diff options
author | Francois Andriot <[email protected]> | 2013-02-04 22:43:57 +0100 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2013-02-04 22:43:57 +0100 |
commit | ab76f558c35b4d81212012b9ee5114144685b920 (patch) | |
tree | 80e735719eaaad5d0e1dac46379c1d88db218173 /sip/tdeui/keditlistbox.sip | |
parent | 2d61b442f04c80f0881abf57c25be9dadac8a3d4 (diff) | |
download | pytde-ab76f558c35b4d81212012b9ee5114144685b920.tar.gz pytde-ab76f558c35b4d81212012b9ee5114144685b920.zip |
Fix "ANY" macro deprecation
Diffstat (limited to 'sip/tdeui/keditlistbox.sip')
-rw-r--r-- | sip/tdeui/keditlistbox.sip | 4 |
1 files changed, 2 insertions, 2 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; } |