aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/PropSet.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2004-09-19 03:49:44 +0000
committernyamatongwe <unknown>2004-09-19 03:49:44 +0000
commitbaf65874491fb3c51c6ff1b29bae6f5c61d1e88c (patch)
tree8a7f801501cd58b2ef0fbde9f8b068d57858fb4d /include/PropSet.h
parentd6fb2b9fb83826e29d0ef4af9abd0a26e64247cd (diff)
downloadscintilla-mirror-baf65874491fb3c51c6ff1b29bae6f5c61d1e88c.tar.gz
Patch to autocompletion from Jakub Vrana to handle cases where
word characters are greater than the start of parameters character.
Diffstat (limited to 'include/PropSet.h')
-rw-r--r--include/PropSet.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/PropSet.h b/include/PropSet.h
index 69f4c4b78..32aea8a0c 100644
--- a/include/PropSet.h
+++ b/include/PropSet.h
@@ -87,9 +87,9 @@ public:
char *Allocate(int size);
void SetFromAllocated();
bool InList(const char *s);
- const char *GetNearestWord(const char *wordStart, int searchLen = -1,
+ const char *GetNearestWord(const char *wordStart, int searchLen,
bool ignoreCase = false, SString wordCharacters="", int wordIndex = -1);
- char *GetNearestWords(const char *wordStart, int searchLen=-1,
+ char *GetNearestWords(const char *wordStart, int searchLen,
bool ignoreCase=false, char otherSeparator='\0', bool exactLen=false);
};