summaryrefslogtreecommitdiff
path: root/area_darwin.m
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-05-20 08:08:55 -0400
committerPietro Gagliardi <[email protected]>2014-05-20 08:08:55 -0400
commitc6d24f0e32c8a03b9f0f31d077c6ffbff58ef74d (patch)
treea8490f04f090bb0d91046655acbddc6d6ba95db3 /area_darwin.m
parent3e9e767d79c85726741faee7b025412a27a6f86c (diff)
Changed #include to #import on the Objective-C files to settle the whole include guards thing. Now to continue fixing Mac OS X 10.6 building...
Diffstat (limited to 'area_darwin.m')
-rw-r--r--area_darwin.m10
1 files changed, 5 insertions, 5 deletions
diff --git a/area_darwin.m b/area_darwin.m
index a34dcdb..6727415 100644
--- a/area_darwin.m
+++ b/area_darwin.m
@@ -2,11 +2,11 @@
#include "objc_darwin.h"
#include "_cgo_export.h"
-#include <AppKit/NSView.h>
-#include <AppKit/NSTrackingArea.h>
-#include <Foundation/NSGeometry.h>
-#include <AppKit/NSEvent.h>
-#include <AppKit/NSBitmapImageRep.h>
+#import <AppKit/NSView.h>
+#import <AppKit/NSTrackingArea.h>
+#import <Foundation/NSGeometry.h>
+#import <AppKit/NSEvent.h>
+#import <AppKit/NSBitmapImageRep.h>
#define to(T, x) ((T *) (x))
#define toNSEvent(x) to(NSEvent, (x))