diff options
| author | nyamatongwe <devnull@localhost> | 2001-08-17 01:47:54 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2001-08-17 01:47:54 +0000 |
| commit | 6246d0d5c518a969d8c54452e8ccf857b4e003da (patch) | |
| tree | 2915f0357199f693e40cc2973af12ba8897c011b | |
| parent | 4b6e513082f251d6570755a4a5a3049ffb41d008 (diff) | |
| download | scintilla-mirror-6246d0d5c518a969d8c54452e8ccf857b4e003da.tar.gz | |
Deprecated SCFIND_DOWN as reverse searching is performed by inverting start
and end of range.
Removed out of date comment about SCFIND_REGEXP.
| -rw-r--r-- | include/Scintilla.h | 1 | ||||
| -rw-r--r-- | include/Scintilla.iface | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index dcfa4303d..fee9f9922 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -257,7 +257,6 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam, #define SC_PRINT_COLOURONWHITEDEFAULTBG 4 #define SCI_SETPRINTCOLOURMODE 2148 #define SCI_GETPRINTCOLOURMODE 2149 -#define SCFIND_DOWN 1 #define SCFIND_WHOLEWORD 2 #define SCFIND_MATCHCASE 4 #define SCFIND_WORDSTART 0x00100000 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index a085e0463..2f0baebb6 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -613,11 +613,9 @@ set void SetPrintColourMode=2148(int mode,) # Returns the print colour mode. get int GetPrintColourMode=2149(,) -val SCFIND_DOWN=1 val SCFIND_WHOLEWORD=2 val SCFIND_MATCHCASE=4 val SCFIND_WORDSTART=0x00100000 -# SCFIND_REGEXP is not yet implemented. val SCFIND_REGEXP=0x00200000 # Find some text in the document. @@ -1574,6 +1572,8 @@ evt void DwellEnd=2017(int position) cat Deprecated +val SCFIND_DOWN=1 + ################################################ # From WinDefs.h |
