aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Document.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2001-04-29 13:32:10 +0000
committernyamatongwe <devnull@localhost>2001-04-29 13:32:10 +0000
commit09d42ffa21ce48f7ccd80c71674445bffe15cef1 (patch)
treee5e81d31814afcd65759d81fd0ec7e375ca7603d /src/Document.h
parent33ce86f2a9e5389f7dd9922eb387936b61364259 (diff)
downloadscintilla-mirror-09d42ffa21ce48f7ccd80c71674445bffe15cef1.tar.gz
Addition of new target methods - versions of ReplaceTarget that take counted
strings to allow for nulls, SearchInTarget and Get/SetSearchFlags to use a series of calls rather than a structure. Handling of \000 in search and replace. Handling of /escapes within character ranges of regular expressions. Some handling of bare ^ and $ regular expressions.
Diffstat (limited to 'src/Document.h')
-rw-r--r--src/Document.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Document.h b/src/Document.h
index bfc1a6e57..aac0a971b 100644
--- a/src/Document.h
+++ b/src/Document.h
@@ -180,7 +180,7 @@ public:
long FindText(int minPos, int maxPos, const char *s,
bool caseSensitive, bool word, bool wordStart, bool regExp, int *length);
long FindText(int iMessage, unsigned long wParam, long lParam);
- const char *SubstituteByPosition(const char *text);
+ const char *SubstituteByPosition(const char *text, int *length);
int LinesTotal();
void ChangeCase(Range r, bool makeUpperCase);