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 | 8d1efd730218d8a434447c7e73ac03720825fb84 (patch) | |
tree | 0b947c848702f84680504498faa18bacadd6f85a | |
parent | dae4aa0e623974edc0f9753fe14c61dbf8af75e3 (diff) | |
download | scintilla-mirror-8d1efd730218d8a434447c7e73ac03720825fb84.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]]) |