aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNeil Hodgson <nyamatongwe@gmail.com>2014-06-17 16:06:01 +1000
committerNeil Hodgson <nyamatongwe@gmail.com>2014-06-17 16:06:01 +1000
commit3f384337b50dcf74131c4cf1bb81b2be25474fc0 (patch)
tree8d6bffe9d88b7ead83da9d6f90f7c3cc817ef77f
parentbcf5198fef31f049e914629a1035778b1cfd2e00 (diff)
downloadscintilla-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.h2
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,