diff options
author | nyamatongwe <nyamatongwe@gmail.com> | 2013-09-09 08:53:31 +1000 |
---|---|---|
committer | nyamatongwe <nyamatongwe@gmail.com> | 2013-09-09 08:53:31 +1000 |
commit | 2c9bc72780f5c78d17f9b29a1a832fc3de7eb474 (patch) | |
tree | 4faa530399b106ad0c21ff8fc16b41bf178c61e0 /cocoa/ScintillaView.mm | |
parent | ad4672487684082b0bc17852215cec0601d8af5b (diff) | |
download | scintilla-mirror-2c9bc72780f5c78d17f9b29a1a832fc3de7eb474.tar.gz |
Use const for constant strings as recommended in Effective Objective C 2.0
Diffstat (limited to 'cocoa/ScintillaView.mm')
-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 4f9fe8c31..552fd9a68 100644 --- a/cocoa/ScintillaView.mm +++ b/cocoa/ScintillaView.mm @@ -22,7 +22,7 @@ static NSCursor* waitCursor; // The scintilla indicator used for keyboard input. #define INPUT_INDICATOR INDIC_MAX - 1 -NSString *SCIUpdateUINotification = @"SCIUpdateUI"; +NSString *const SCIUpdateUINotification = @"SCIUpdateUI"; /** * Provide an NSCursor object that matches the Window::Cursor enumeration. |