diff options
author | Neil <nyamatongwe@gmail.com> | 2025-03-29 09:50:04 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2025-03-29 09:50:04 +1100 |
commit | be86b31a7085c1ed73ee34e3e25ebb1458064e8c (patch) | |
tree | 9675eacc87ebf3aa7b0e0195a1ab435dc11ed26f /include | |
parent | 5e4cb9fd1974d241cdf3d15ea522753b7d61857c (diff) | |
download | scintilla-mirror-be86b31a7085c1ed73ee34e3e25ebb1458064e8c.tar.gz |
Bug [#2469]. Return enumeration type from MarkerSymbolDefined to match
MarkerDefine.
Diffstat (limited to 'include')
-rw-r--r-- | include/Scintilla.iface | 2 | ||||
-rw-r--r-- | include/ScintillaCall.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index f32148b69..e1814eb5a 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -2755,7 +2755,7 @@ set void SetExtraDescent=2527(int extraDescent,) get int GetExtraDescent=2528(,) # Which symbol was defined for markerNumber with MarkerDefine -fun int MarkerSymbolDefined=2529(int markerNumber,) +fun MarkerSymbol MarkerSymbolDefined=2529(int markerNumber,) # Set the text in the text margin for a line set void MarginSetText=2530(line line, string text) diff --git a/include/ScintillaCall.h b/include/ScintillaCall.h index 345d15612..b31978725 100644 --- a/include/ScintillaCall.h +++ b/include/ScintillaCall.h @@ -750,7 +750,7 @@ public: int ExtraAscent(); void SetExtraDescent(int extraDescent); int ExtraDescent(); - int MarkerSymbolDefined(int markerNumber); + Scintilla::MarkerSymbol MarkerSymbolDefined(int markerNumber); void MarginSetText(Line line, const char *text); int MarginGetText(Line line, char *text); std::string MarginGetText(Line line); |