diff options
author | Neil <nyamatongwe@gmail.com> | 2024-03-08 09:09:54 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2024-03-08 09:09:54 +1100 |
commit | 61b369cbfef41fece0d01b7ff600afaa891d76ec (patch) | |
tree | bcb1cebacfe26460210553bf63fb25aa63f400d2 /src/Editor.cxx | |
parent | 40e4b19c0004d7572c3868a0284fb44a09e4fd36 (diff) | |
download | scintilla-mirror-61b369cbfef41fece0d01b7ff600afaa891d76ec.tar.gz |
Reformat with astyle.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r-- | src/Editor.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 343529510..57535ede9 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -1915,7 +1915,7 @@ Sci::Position Editor::FormatRange(Scintilla::Message iMessage, Scintilla::uptr_t void *ptr = PtrFromSPtr(lParam); if (iMessage == Message::FormatRange) { RangeToFormat *pfr = static_cast<RangeToFormat *>(ptr); - const CharacterRangeFull chrg{ pfr->chrg.cpMin,pfr->chrg.cpMax }; + const CharacterRangeFull chrg{ pfr->chrg.cpMin, pfr->chrg.cpMax }; AutoSurface surface(pfr->hdc, this, Technology::Default); AutoSurface surfaceMeasure(pfr->hdcTarget, this, Technology::Default); if (!surface || !surfaceMeasure) { |