From c715e9dfc7da16a645ae75b57367155ed56061d5 Mon Sep 17 00:00:00 2001 From: Neil Date: Mon, 18 Nov 2013 14:54:56 +1100 Subject: Bug [#1552]. Search string could be const. --- doc/ScintillaDoc.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/ScintillaDoc.html') 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 {
 struct Sci_TextToFind {
     struct Sci_CharacterRange 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
 };
 
-- cgit v1.2.3