SWIGged updates for wxGTK

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@18738 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2003-01-15 00:26:14 +00:00
parent 5c07db1928
commit a895d61d5c
7 changed files with 50 additions and 21 deletions

View File

@@ -12675,8 +12675,7 @@ static PyObject *_wrap_wxGrid_GetSelectedRows(PyObject *self, PyObject *args, Py
}
{
PyThreadState* __tstate = wxPyBeginAllowThreads();
const wxArrayInt & _result_ref = wxGrid_GetSelectedRows(_arg0);
_result = (wxArrayInt *) &_result_ref;
_result = new wxArrayInt (wxGrid_GetSelectedRows(_arg0));
wxPyEndAllowThreads(__tstate);
if (PyErr_Occurred()) return NULL;
@@ -12688,6 +12687,7 @@ static PyObject *_wrap_wxGrid_GetSelectedRows(PyObject *self, PyObject *args, Py
PyList_Append(_resultobj, val);
Py_DECREF(val);
}
delete _result;
}
return _resultobj;
}
@@ -12712,8 +12712,7 @@ static PyObject *_wrap_wxGrid_GetSelectedCols(PyObject *self, PyObject *args, Py
}
{
PyThreadState* __tstate = wxPyBeginAllowThreads();
const wxArrayInt & _result_ref = wxGrid_GetSelectedCols(_arg0);
_result = (wxArrayInt *) &_result_ref;
_result = new wxArrayInt (wxGrid_GetSelectedCols(_arg0));
wxPyEndAllowThreads(__tstate);
if (PyErr_Occurred()) return NULL;
@@ -12725,6 +12724,7 @@ static PyObject *_wrap_wxGrid_GetSelectedCols(PyObject *self, PyObject *args, Py
PyList_Append(_resultobj, val);
Py_DECREF(val);
}
delete _result;
}
return _resultobj;
}