aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/WindowAccessor.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2009-05-27 02:53:32 +0000
committernyamatongwe <unknown>2009-05-27 02:53:32 +0000
commit3b5ad42cc9b4f02e07d875a61cc5156aea49b057 (patch)
tree78d3afeb62b03c14a5933c43fe4a18cb0a75ee32 /src/WindowAccessor.cxx
parent24e3a749d581ba608164239fbf4fe8e783788715 (diff)
downloadscintilla-mirror-3b5ad42cc9b4f02e07d875a61cc5156aea49b057.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);
}