diff options
author | Neil Hodgson <nyamatongwe@gmail.com> | 2014-06-17 16:06:01 +1000 |
---|---|---|
committer | Neil Hodgson <nyamatongwe@gmail.com> | 2014-06-17 16:06:01 +1000 |
commit | 3f384337b50dcf74131c4cf1bb81b2be25474fc0 (patch) | |
tree | 8d6bffe9d88b7ead83da9d6f90f7c3cc817ef77f | |
parent | bcf5198fef31f049e914629a1035778b1cfd2e00 (diff) | |
download | scintilla-mirror-3f384337b50dcf74131c4cf1bb81b2be25474fc0.tar.gz |
Using the platform's NS_OPTIONS macro to define exported enumeration as recommended
by Apple's documentation.
-rw-r--r-- | cocoa/InfoBarCommunicator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cocoa/InfoBarCommunicator.h b/cocoa/InfoBarCommunicator.h index 7dfe13a48..382f3bb8e 100644 --- a/cocoa/InfoBarCommunicator.h +++ b/cocoa/InfoBarCommunicator.h @@ -8,7 +8,7 @@ * This file is dual licensed under LGPL v2.1 and the Scintilla license (http://www.scintilla.org/License.txt). */ -enum IBDisplay { +typedef NS_OPTIONS(NSUInteger, IBDisplay) { IBShowZoom = 0x01, IBShowCaretPosition = 0x02, IBShowStatusText = 0x04, |