diff options
author | Neil Hodgson <nyamatongwe@gmail.com> | 2014-03-26 11:34:55 +1100 |
---|---|---|
committer | Neil Hodgson <nyamatongwe@gmail.com> | 2014-03-26 11:34:55 +1100 |
commit | aefef213c2343b1e753664b2e606b91ed68db57b (patch) | |
tree | b200d8d803a3c471e6b65f51ebb6e52bcc3757f0 | |
parent | e087f2085305723556e964ab66040fda8783c131 (diff) | |
download | scintilla-mirror-aefef213c2343b1e753664b2e606b91ed68db57b.tar.gz |
Indentation use tab.
-rw-r--r-- | cocoa/ScintillaView.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cocoa/ScintillaView.mm b/cocoa/ScintillaView.mm index 97bc0edfe..7769d87ef 100644 --- a/cocoa/ScintillaView.mm +++ b/cocoa/ScintillaView.mm @@ -383,7 +383,7 @@ static NSCursor *cursorFromEnum(Window::Cursor cursor) // Its replacing a non-existent position so do nothing. return; - [mOwner deleteRange: replacementRange]; + [mOwner deleteRange: replacementRange]; NSString* newText = @""; if ([aString isKindOfClass:[NSString class]]) |