X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f97d84a63b21fffcc830390e5bc3fe0eedb6e15b..5fe143dfdfa19c4fe8e15abfa933940fb51662e5:/src/stc/gen_iface.py diff --git a/src/stc/gen_iface.py b/src/stc/gen_iface.py index b7dd756715..293eff48c8 100644 --- a/src/stc/gen_iface.py +++ b/src/stc/gen_iface.py @@ -19,14 +19,14 @@ from fileinput import FileInput IFACE = './scintilla/include/Scintilla.iface' H_TEMPLATE = './stc.h.in' CPP_TEMPLATE = './stc.cpp.in' -H_DEST = '../../include/wx/stc/stc.h' # './stc_test.h' # -CPP_DEST = './stc.cpp' #'./stc_test.cpp' +H_DEST = '../../include/wx/stc/stc.h' +CPP_DEST = './stc.cpp' # Value prefixes to convert valPrefixes = [('SCI_', ''), ('SC_', ''), - ('SCN_', None), # just toss these... + ('SCN_', None), # just toss these out... ('SCEN_', None), ('SCE_', ''), ('SCLEX_', 'LEX_'), @@ -35,7 +35,7 @@ valPrefixes = [('SCI_', ''), ('SCWS_', 'WS_'), ] -# Message funcion values that should have a CMD_ constant as well +# Message function values that should have a CMD_ constant as well cmdValues = [ (2300, 2350), 2011, 2013, (2176, 2180) ] @@ -338,7 +338,7 @@ methodOverrideMap = { '''wxString %s() { wxString text; - int len = GetTextLength(); + int len = GetTextLength()+1; char* buff = text.GetWriteBuf(len+1); SendMsg(%s, len, (long)buff);