diff options
-rw-r--r-- | include/Scintilla.h | 1 | ||||
-rw-r--r-- | include/Scintilla.iface | 1 | ||||
-rw-r--r-- | src/ViewStyle.cxx | 2 |
3 files changed, 2 insertions, 2 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index dc0a73b7e..ef4f12b9f 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -829,7 +829,6 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define CARETSTYLE_BLOCK 2 #define CARETSTYLE_OVERSTRIKE_BAR 0 #define CARETSTYLE_OVERSTRIKE_BLOCK 16 -#define CARETSTYLE_INS_MASK 0xF #define SCI_SETCARETSTYLE 2512 #define SCI_GETCARETSTYLE 2513 #define SCI_SETINDICATORCURRENT 2500 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index aed70e7f3..ca936ab31 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -2173,7 +2173,6 @@ val CARETSTYLE_LINE=1 val CARETSTYLE_BLOCK=2 val CARETSTYLE_OVERSTRIKE_BAR=0 val CARETSTYLE_OVERSTRIKE_BLOCK=16 -val CARETSTYLE_INS_MASK=0xF # Set the style of the caret to be drawn. set void SetCaretStyle=2512(int caretStyle,) diff --git a/src/ViewStyle.cxx b/src/ViewStyle.cxx index 148163bec..2da3a2a52 100644 --- a/src/ViewStyle.cxx +++ b/src/ViewStyle.cxx @@ -27,6 +27,8 @@ #include "Style.h" #include "ViewStyle.h" +#define CARETSTYLE_INS_MASK 0xF + using namespace Scintilla; MarginStyle::MarginStyle(int style_, int width_, int mask_) : |