reSWIGged

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38325 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-03-24 01:52:48 +00:00
parent f65bb0f8ab
commit 50f151d726
15 changed files with 925 additions and 376 deletions

View File

@@ -2790,7 +2790,7 @@ SWIG_AsVal_bool (PyObject *obj, bool *val)
SWIGINTERN bool wxWizardPage_Create(wxWizardPage *self,wxWizard *parent,wxBitmap const &bitmap=wxNullBitmap,wxString const &resource=wxPyEmptyString){
wxChar* res = NULL;
if (resource.Length())
if (resource.length())
res = (wxChar*)resource.c_str();
return self->Create(parent, bitmap, res);
}
@@ -2869,13 +2869,13 @@ IMP_PYCALLBACK_VOID_WXWINBASE(wxPyWizardPage, wxWizardPage, RemoveChild);
SWIGINTERN wxPyWizardPage *new_wxPyWizardPage(wxWizard *parent,wxBitmap const *bitmap=&wxNullBitmap,wxString const *resource=&wxPyEmptyString){
wxChar* res = NULL;
if (resource->Length())
if (resource->length())
res = (wxChar*)resource->c_str();
return new wxPyWizardPage(parent, *bitmap, res);
}
SWIGINTERN bool wxPyWizardPage_Create(wxPyWizardPage *self,wxWizard *parent,wxBitmap const &bitmap=wxNullBitmap,wxString const &resource=wxPyEmptyString){
wxChar* res = NULL;
if (resource.Length())
if (resource.length())
res = (wxChar*)resource.c_str();
return self->Create(parent, bitmap, res);
}