diff options
Diffstat (limited to 'src/Document.h')
-rw-r--r-- | src/Document.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Document.h b/src/Document.h index 4b0b9b1db..cfb131608 100644 --- a/src/Document.h +++ b/src/Document.h @@ -173,7 +173,7 @@ public: int NextWordStart(int pos, int delta); int Length() { return cb.Length(); } long FindText(int minPos, int maxPos, const char *s, - bool caseSensitive, bool word, bool wordStart); + bool caseSensitive, bool word, bool wordStart, bool regExp, int *length); long FindText(int iMessage, unsigned long wParam, long lParam); int LinesTotal(); @@ -196,6 +196,8 @@ public: const WatcherWithUserData *GetWatchers() const { return watchers; } int GetLenWatchers() const { return lenWatchers; } + static char DocCharAt(int pos, void *param); + bool IsWordPartSeparator(char ch); int WordPartLeft(int pos); int WordPartRight(int pos); |