diff options
-rw-r--r-- | include/Scintilla.h | 2 | ||||
-rw-r--r-- | include/Scintilla.iface | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index beeda1ab6..fc6369ee4 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -99,6 +99,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SC_MARK_CIRCLEPLUSCONNECTED 19 #define SC_MARK_CIRCLEMINUS 20 #define SC_MARK_CIRCLEMINUSCONNECTED 21 +#define SC_MARK_BACKGROUND 22 #define SC_MARK_CHARACTER 10000 #define SC_MARKNUM_FOLDEREND 25 #define SC_MARKNUM_FOLDEROPENMID 26 @@ -107,7 +108,6 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SC_MARKNUM_FOLDERSUB 29 #define SC_MARKNUM_FOLDER 30 #define SC_MARKNUM_FOLDEROPEN 31 -#define SC_MARK_BACKGROUND 32 #define SCI_MARKERDEFINE 2040 #define SCI_MARKERSETFORE 2041 #define SCI_MARKERSETBACK 2042 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 199e60ac7..ab3c5b6ed 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -229,6 +229,9 @@ val SC_MARK_CIRCLEPLUSCONNECTED=19 val SC_MARK_CIRCLEMINUS=20 val SC_MARK_CIRCLEMINUSCONNECTED=21 +# Invisible mark that only sets the line background color +val SC_MARK_BACKGROUND=22 + val SC_MARK_CHARACTER=10000 # Markers used for outlining column @@ -240,9 +243,6 @@ val SC_MARKNUM_FOLDERSUB=29 val SC_MARKNUM_FOLDER=30 val SC_MARKNUM_FOLDEROPEN=31 -# Invisible mark that only sets the line background color -val SC_MARK_BACKGROUND=32 - # Set the symbol used for a particular marker number. fun void MarkerDefine=2040(int markerNumber, int markerSymbol) |