]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stc/gen_iface.py
Add utils and tests to OS/2 builds, #9587 from Dave Parsons.
[wxWidgets.git] / src / stc / gen_iface.py
index 7dbc277c2172af291cd73ab01783c791b0381de6..b4cccc4d3a096ba00e1b9ceef473553f05c32247 100755 (executable)
@@ -483,9 +483,9 @@ methodOverrideMap = {
 
     'GetText' :
     (0,
-     'wxString %s();',
+     'wxString %s() const;',
 
-     '''wxString %s() {
+     '''wxString %s() const {
          int len  = GetTextLength();
          wxMemoryBuffer mbuf(len+1);   // leave room for the null...
          char* buf = (char*)mbuf.GetWriteBuf(len+1);
@@ -663,6 +663,8 @@ constNonGetterMethods = set((
     'LineFromPosition',
     'PositionFromLine',
     'LineLength',
+    'CanRedo',
+    'CanUndo',
 ))
 
 #----------------------------------------------------------------------------