]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stc/gen_iface.py
Allow using wxGridCellEnumEditor with the mouse.
[wxWidgets.git] / src / stc / gen_iface.py
index 55eaa895b1bcff9187a418e2ab06599379bf362e..831cf85fe4a8f14f1c9b5b9898efb4d7a57e9c4d 100755 (executable)
@@ -509,11 +509,7 @@ methodOverrideMap = {
      'wxString %s();',
 
      '''wxString %s() {
-         long   start;
-         long   end;
-
-         GetSelection(&start, &end);
-         int   len  = end - start;
+         const int len = SendMsg(SCI_GETSELTEXT, 0, (sptr_t)0);
          if (!len) return wxEmptyString;
 
          wxMemoryBuffer mbuf(len+2);