aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/Scintilla.iface2
-rw-r--r--include/ScintillaCall.h2
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);