summaryrefslogtreecommitdiff
path: root/prefsize_darwin.m
diff options
context:
space:
mode:
Diffstat (limited to 'prefsize_darwin.m')
-rw-r--r--prefsize_darwin.m10
1 files changed, 5 insertions, 5 deletions
diff --git a/prefsize_darwin.m b/prefsize_darwin.m
index 8c975af..34a0dcd 100644
--- a/prefsize_darwin.m
+++ b/prefsize_darwin.m
@@ -1,7 +1,7 @@
// 15 may 2014
#include "objc_darwin.h"
-#include <AppKit/NSControl.h>
+#import <AppKit/NSControl.h>
// see delegateuitask_darwin.m
// in this case, NSScrollView.h, NSTableView.h, AND NSProgressIndicator.h all include NSApplication.h
@@ -10,15 +10,15 @@
#undef MAC_OS_X_VERSION_MAX_ALLOWED
#define MAC_OS_X_VERSION_MIN_REQUIRED MAC_OS_X_VERSION_10_7
#define MAC_OS_X_VERSION_MAX_ALLOWED MAC_OS_X_VERSION_10_7
-#include <AppKit/NSApplication.h>
+#import <AppKit/NSApplication.h>
#undef MAC_OS_X_VERSION_MIN_REQUIRED
#undef MAC_OS_X_VERSION_MAX_ALLOWED
#define MAC_OS_X_VERSION_MIN_REQUIRED MAC_OS_X_VERSION_10_6
#define MAC_OS_X_VERSION_MAX_ALLOWED MAC_OS_X_VERSION_10_6
-#include <AppKit/NSScrollView.h>
-#include <AppKit/NSTableView.h>
-#include <AppKit/NSProgressIndicator.h>
+#import <AppKit/NSScrollView.h>
+#import <AppKit/NSTableView.h>
+#import <AppKit/NSProgressIndicator.h>
#define to(T, x) ((T *) (x))
#define toNSControl(x) to(NSControl, (x))