aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2016-11-16 09:27:40 +1100
committerNeil <nyamatongwe@gmail.com>2016-11-16 09:27:40 +1100
commite603bf45ce1d29f17a0d4233484b4ce1806f235a (patch)
treebbd1363de3412f18d600403b0b64ba46383f0098 /src
parented72ad02a2f9c6bb616dfabb3e9459e7f5a45b37 (diff)
downloadscintilla-mirror-e603bf45ce1d29f17a0d4233484b4ce1806f235a.tar.gz
Deprecate non-branded struct names in Scintilla.h.
Diffstat (limited to 'src')
-rw-r--r--src/Editor.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx
index 5f588b1fd..f219a5669 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -3932,7 +3932,7 @@ CaseFolder *Editor::CaseFolderForEncoding() {
long Editor::FindText(
uptr_t wParam, ///< Search modes : @c SCFIND_MATCHCASE, @c SCFIND_WHOLEWORD,
///< @c SCFIND_WORDSTART, @c SCFIND_REGEXP or @c SCFIND_POSIX.
- sptr_t lParam) { ///< @c TextToFind structure: The text to search for in the given range.
+ sptr_t lParam) { ///< @c Sci_TextToFind structure: The text to search for in the given range.
Sci_TextToFind *ft = reinterpret_cast<Sci_TextToFind *>(lParam);
int lengthFound = istrlen(ft->lpstrText);