aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--cocoa/ScintillaView.mm8
1 files changed, 4 insertions, 4 deletions
diff --git a/cocoa/ScintillaView.mm b/cocoa/ScintillaView.mm
index bd79fbb71..c69bbab55 100644
--- a/cocoa/ScintillaView.mm
+++ b/cocoa/ScintillaView.mm
@@ -1276,10 +1276,10 @@ static NSCursor *cursorFromEnum(Window::Cursor cursor)
*/
- (void) deleteRange: (NSRange) aRange
{
- if (aRange.length > 0)
- {
- [self message: SCI_DELETERANGE wParam: aRange.location lParam: aRange.length];
- }
+ if (aRange.length > 0)
+ {
+ [self message: SCI_DELETERANGE wParam: aRange.location lParam: aRange.length];
+ }
}
//--------------------------------------------------------------------------------------------------