diff options
author | Neil <nyamatongwe@gmail.com> | 2022-08-09 16:02:28 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2022-08-09 16:02:28 +1000 |
commit | 5a75bc307318c1cf04f66390299792b87f37ff97 (patch) | |
tree | 27fb097d3d3eb93a1ef65580e9221db41b5913b7 | |
parent | f9b25c2b3062b5cabb5147d446152035361adae0 (diff) | |
download | scintilla-mirror-5a75bc307318c1cf04f66390299792b87f37ff97.tar.gz |
Fix indentation.
-rw-r--r-- | src/Decoration.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Decoration.cxx b/src/Decoration.cxx index a26eecd1c..f2e564254 100644 --- a/src/Decoration.cxx +++ b/src/Decoration.cxx @@ -187,7 +187,7 @@ FillResult<Sci::Position> DecorationList<POS>::FillRange(Sci::Position position, // Converting result from POS to Sci::Position as callers not polymorphic. const FillResult<POS> frInPOS = current->rs.FillRange(static_cast<POS>(position), value, static_cast<POS>(fillLength)); const FillResult<Sci::Position> fr { frInPOS.changed, frInPOS.position, frInPOS.fillLength }; - if (current->Empty()) { + if (current->Empty()) { Delete(currentIndicator); } return fr; |