aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.cxx
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2024-03-08 09:09:54 +1100
committerNeil <nyamatongwe@gmail.com>2024-03-08 09:09:54 +1100
commit61b369cbfef41fece0d01b7ff600afaa891d76ec (patch)
treebcb1cebacfe26460210553bf63fb25aa63f400d2 /src/Editor.cxx
parent40e4b19c0004d7572c3868a0284fb44a09e4fd36 (diff)
downloadscintilla-mirror-61b369cbfef41fece0d01b7ff600afaa891d76ec.tar.gz
Reformat with astyle.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r--src/Editor.cxx2
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) {