aboutsummaryrefslogtreecommitdiffhomepage
path: root/qt/ScintillaEditBase/PlatQt.cpp
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2018-04-25 17:42:11 +1000
committerNeil <nyamatongwe@gmail.com>2018-04-25 17:42:11 +1000
commit3c82cfba7bd67e03a70fb24e9e7940b7ffc251d0 (patch)
tree55a69aba695cde5ca7f065dec206d46cac5dee3e /qt/ScintillaEditBase/PlatQt.cpp
parentfdc720a5a23e10a6b7ff4f51362db9ed5181aa8d (diff)
downloadscintilla-mirror-3c82cfba7bd67e03a70fb24e9e7940b7ffc251d0.tar.gz
Backport: Remove variables and casts that are not needed.
Backport of changeset 6739:e204054d5d07.
Diffstat (limited to 'qt/ScintillaEditBase/PlatQt.cpp')
-rw-r--r--qt/ScintillaEditBase/PlatQt.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qt/ScintillaEditBase/PlatQt.cpp b/qt/ScintillaEditBase/PlatQt.cpp
index e32fec67d..fb7904f05 100644
--- a/qt/ScintillaEditBase/PlatQt.cpp
+++ b/qt/ScintillaEditBase/PlatQt.cpp
@@ -460,10 +460,10 @@ void SurfaceImpl::MeasureWidths(Font &font,
if (unicodeMode) {
int fit = su.size();
int ui=0;
- const unsigned char *us = reinterpret_cast<const unsigned char *>(s);
int i=0;
while (ui<fit) {
- const unsigned int byteCount = UTF8BytesOfLead[us[i]];
+ const unsigned char uch = s[i];
+ const unsigned int byteCount = UTF8BytesOfLead[uch];
const int codeUnits = UTF16LengthFromUTF8ByteCount(byteCount);
qreal xPosition = tl.cursorToX(ui+codeUnits);
for (unsigned int bytePos=0; (bytePos<byteCount) && (i<len); bytePos++) {