]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_textctrl.i
fixed memory leaks when reading invalid GIFs
[wxWidgets.git] / wxPython / src / _textctrl.i
index f735f344eb4567ec341f21074802ae718f060e9c..39c10fb7a402bbe7dd4455a85cfdcf312e690dc8 100644 (file)
@@ -70,6 +70,12 @@ enum {
 
 %pythoncode { TE_LINEWRAP = TE_CHARWRAP }
 
+// deprecated synonymns
+%pythoncode {
+PROCESS_ENTER = TE_PROCESS_ENTER
+PASSWORD = TE_PASSWORD
+}
+
 
 
 enum wxTextAttrAlignment
@@ -346,6 +352,10 @@ the client area origin nor scrolling. ", "",
     
 #ifdef __WXMAC__
     virtual void MacCheckSpelling(bool check);
+#else
+    %extend {
+        void MacCheckSpelling(bool check) {}
+    }
 #endif
 
     // generate the wxEVT_COMMAND_TEXT_UPDATED event, like SetValue() does