aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/WindowAccessor.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2009-05-27 02:53:32 +0000
committernyamatongwe <devnull@localhost>2009-05-27 02:53:32 +0000
commitd13feca5b1389dd8846af5b77b7fb91c13d7cf4d (patch)
tree78d3afeb62b03c14a5933c43fe4a18cb0a75ee32 /src/WindowAccessor.cxx
parent665e62bc23ae04575146bb47ba5fc0d2a3003096 (diff)
downloadscintilla-mirror-d13feca5b1389dd8846af5b77b7fb91c13d7cf4d.tar.gz
Branded structs in Scintilla.h with Sci_ prefix and added forwarding macros
from old name to new.
Diffstat (limited to 'src/WindowAccessor.cxx')
-rw-r--r--src/WindowAccessor.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WindowAccessor.cxx b/src/WindowAccessor.cxx
index 8093300bc..9de106fb7 100644
--- a/src/WindowAccessor.cxx
+++ b/src/WindowAccessor.cxx
@@ -45,7 +45,7 @@ void WindowAccessor::Fill(int position) {
if (endPos > lenDoc)
endPos = lenDoc;
- TextRange tr = {{startPos, endPos}, buf};
+ Sci_TextRange tr = {{startPos, endPos}, buf};
Platform::SendScintillaPointer(id, SCI_GETTEXTRANGE, 0, &tr);
}