X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d14a1e28567de23c586bc80017073d0c39f8d18f..db679b8c836e69c111cdc31e62cf92cebe4f938f:/wxPython/src/_validator.i diff --git a/wxPython/src/_validator.i b/wxPython/src/_validator.i index f04eb83383..b3e4e55aa4 100644 --- a/wxPython/src/_validator.i +++ b/wxPython/src/_validator.i @@ -32,11 +32,16 @@ class wxValidator : public wxEvtHandler { public: - %addtofunc wxValidator "self._setOORInfo(self)" + %pythonAppend wxValidator "self._setOORInfo(self)" + %typemap(out) wxValidator*; // turn off this typemap + wxValidator(); //~wxValidator(); + // Turn it back on again + %typemap(out) wxValidator* { $result = wxPyMake_wxObject($1, $owner); } + // Make a clone of this validator (or return NULL) wxValidator* Clone(); @@ -56,7 +61,7 @@ public: // validators beep by default if invalid key is pressed, these functions // allow to change it static bool IsSilent(); - static void SetBellOnError(int doIt = TRUE); + static void SetBellOnError(int doIt = true); }; @@ -73,12 +78,12 @@ IMPLEMENT_DYNAMIC_CLASS(wxPyValidator, wxValidator); class wxPyValidator : public wxValidator { public: - %addtofunc wxPyValidator " + %pythonAppend wxPyValidator " self._setCallbackInfo(self, PyValidator, 1) self._setOORInfo(self)" wxPyValidator(); - void _setCallbackInfo(PyObject* self, PyObject* _class, int incref=TRUE); + void _setCallbackInfo(PyObject* self, PyObject* _class, int incref=true); };