diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-09-14 08:25:48 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-09-14 08:26:27 +0200 |
commit | 3fd63b98d18dc9de8b37edced8ae74e4d70b929c (patch) | |
tree | c2bf9c6333cd73032967d164a39f7028e76b30b9 /vcl | |
parent | 2c6a260b12bea4f7024ad39acf90d42cff3e173e (diff) |
loplugin:implicitboolconversion
Change-Id: Ib9f2b44c16e43841d560ac18ff82efd54888b9d7
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/glyphs/graphite_layout.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/glyphs/graphite_layout.cxx b/vcl/source/glyphs/graphite_layout.cxx index f1a0999a01e9..07d19cfe6677 100644 --- a/vcl/source/glyphs/graphite_layout.cxx +++ b/vcl/source/glyphs/graphite_layout.cxx @@ -154,7 +154,7 @@ GraphiteLayout::fillFrom(gr_segment * pSegment, ImplLayoutArgs &rArgs, float fSc if (firstChar < mnMinCharPos || firstChar >= mnEndCharPos) continue; // handle reordered clusters. Presumes reordered glyphs have monotonic opposite char index until the cluster base. - bool isReordered = (nextBaseSlot && ((bRtl ^ (gr_slot_before(nextBaseSlot) < firstChar - mnSegCharOffset)) + bool isReordered = (nextBaseSlot && ((bRtl != (gr_slot_before(nextBaseSlot) < firstChar - mnSegCharOffset)) || gr_slot_before(nextBaseSlot) == firstChar - mnSegCharOffset)); if (clusterStart >= 0 && !isReordered) // we hit the base (end) of a reordered cluster { |