diff options
author | nyamatongwe <devnull@localhost> | 2007-06-02 02:38:55 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2007-06-02 02:38:55 +0000 |
commit | 739e6e3218041c656f62685fd2e19988e37e294f (patch) | |
tree | 456ec5019dd63371f280c9dbd4187165ac38bcb5 | |
parent | f9a02492ca8f902ca349e60ce42dee4cadbd35c0 (diff) | |
download | scintilla-mirror-739e6e3218041c656f62685fd2e19988e37e294f.tar.gz |
Changed caret style method IDs to be in sequence.
-rw-r--r-- | include/Scintilla.h | 4 | ||||
-rw-r--r-- | include/Scintilla.iface | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index 9e67b44de..81a7b814d 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -645,8 +645,8 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define CARETSTYLE_INVISIBLE 0 #define CARETSTYLE_LINE 1 #define CARETSTYLE_BLOCK 2 -#define SCI_SETCARETSTYLE 2950 -#define SCI_GETCARETSTYLE 2951 +#define SCI_SETCARETSTYLE 2512 +#define SCI_GETCARETSTYLE 2513 #define SCI_SETINDICATORCURRENT 2500 #define SCI_GETINDICATORCURRENT 2501 #define SCI_SETINDICATORVALUE 2502 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index c46d8dbd7..7d21f41b3 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1740,10 +1740,10 @@ val CARETSTYLE_LINE=1 val CARETSTYLE_BLOCK=2 # Set the style of the caret to be drawn. -set void SetCaretStyle=2950(int caretStyle,) +set void SetCaretStyle=2512(int caretStyle,) # Returns the current style of the caret. -get int GetCaretStyle=2951(,) +get int GetCaretStyle=2513(,) # Set the indicator used for IndicatorFillRange and IndicatorClearRange set void SetIndicatorCurrent=2500(int indicator,) |