diff options
author | nyamatongwe <devnull@localhost> | 2002-01-15 07:35:34 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2002-01-15 07:35:34 +0000 |
commit | 2d0ba77d21ef2c645bcad67fa61dec4e80b54f25 (patch) | |
tree | 8c2d07245a1252a89ae24c298f0059ab99194aa9 /include/PropSet.h | |
parent | ed7ff8459b0ea15c20460b4c051625424b88b7b6 (diff) | |
download | scintilla-mirror-2d0ba77d21ef2c645bcad67fa61dec4e80b54f25.tar.gz |
GetNearestWord changed to use a passed in set of valid word characters
rather than a hardcoded list.
Diffstat (limited to 'include/PropSet.h')
-rw-r--r-- | include/PropSet.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/PropSet.h b/include/PropSet.h index 45ee8d3bd..bef06d231 100644 --- a/include/PropSet.h +++ b/include/PropSet.h @@ -70,7 +70,8 @@ public: char *Allocate(int size); void SetFromAllocated(); bool InList(const char *s); - const char *GetNearestWord(const char *wordStart, int searchLen = -1, bool ignoreCase = false); + const char *GetNearestWord(const char *wordStart, int searchLen = -1, + bool ignoreCase = false, SString wordCharacters=""); char *GetNearestWords(const char *wordStart, int searchLen=-1, bool ignoreCase=false, char otherSeparator='\0'); }; |