diff options
author | Neil <nyamatongwe@gmail.com> | 2013-11-18 14:54:56 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2013-11-18 14:54:56 +1100 |
commit | c715e9dfc7da16a645ae75b57367155ed56061d5 (patch) | |
tree | e87706d8d3880675d723d33509796a7c964b8578 /doc/ScintillaDoc.html | |
parent | a9f57f32ed66ee36211e7c450637f7d996484663 (diff) | |
download | scintilla-mirror-c715e9dfc7da16a645ae75b57367155ed56061d5.tar.gz |
Bug [#1552]. Search string could be const.
Diffstat (limited to 'doc/ScintillaDoc.html')
-rw-r--r-- | doc/ScintillaDoc.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index e5bf32e4f..43ec2d526 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -801,7 +801,7 @@ struct Sci_TextRange { <pre> struct Sci_TextToFind { struct <a class="jump" href="#Sci_CharacterRange">Sci_CharacterRange</a> chrg; // range to search - char *lpstrText; // the search pattern (zero terminated) + const char *lpstrText; // the search pattern (zero terminated) struct Sci_CharacterRange chrgText; // returned as position of matching text }; </pre> |