]> git.saurik.com Git - wxWidgets.git/commitdiff
Use PyObject_AsReadBuffer in the typemap for getting buffer or buffer
authorRobin Dunn <robin@alldunn.com>
Tue, 29 Aug 2006 18:56:07 +0000 (18:56 +0000)
committerRobin Dunn <robin@alldunn.com>
Tue, 29 Aug 2006 18:56:07 +0000 (18:56 +0000)
compatible  objects

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40911 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/src/my_typemaps.i

index 5c8474ef2b00a44d425247e9478b9126064f3f14..369de3f95d1cc3c989ffe84ad7a2f6d1f5bfe9e3 100644 (file)
@@ -319,16 +319,19 @@ MAKE_INT_ARRAY_TYPEMAPS(styles, styles_field)
 // Typemaps for loading a image or bitmap from an object that implements the
 // buffer interface
 
-
 %typemap(in) (buffer data, int DATASIZE)
-{ if ($input != Py_None) {
-        if (!PyArg_Parse($input, "t#", &$1, &$2)) SWIG_fail;
-}}
+{
+    if (PyObject_AsReadBuffer($input, (const void**)(&$1), &$2) == -1) SWIG_fail;
+}
 
 %typemap(in) (buffer alpha, int ALPHASIZE)
-{ if ($input != Py_None) {
-        if (!PyArg_Parse($input, "t#", &$1, &$2)) SWIG_fail;
-}}
+{
+    if ($input != Py_None) {
+        if (PyObject_AsReadBuffer($input, (const void**)(&$1), &$2) == -1) SWIG_fail;
+    }
+}
+
+
 
 //---------------------------------------------------------------------------
 // Typemaps to convert return values that are base class pointers