diff options
author | nyamatongwe <devnull@localhost> | 2011-05-27 09:03:30 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2011-05-27 09:03:30 +1000 |
commit | 9b7cf34203bcfd8e94e8e842a0380edd3f1d15a1 (patch) | |
tree | 08ae830207b8bcc153b87fe09ca9b7702c89c938 | |
parent | 08f08316676958de1358caef7405eea11f19927b (diff) | |
download | scintilla-mirror-9b7cf34203bcfd8e94e8e842a0380edd3f1d15a1.tar.gz |
Avoid warning.
-rw-r--r-- | cocoa/ScintillaView.mm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cocoa/ScintillaView.mm b/cocoa/ScintillaView.mm index 4cebd7e9e..7c0fecaf3 100644 --- a/cocoa/ScintillaView.mm +++ b/cocoa/ScintillaView.mm @@ -649,6 +649,8 @@ NSString *SCIUpdateUINotification = @"SCIUpdateUI"; [self setGeneralProperty: SCI_SETZOOM value: zoom]; break; } + default: + break; }; } |