aboutsummaryrefslogtreecommitdiffhomepage
path: root/cocoa/PlatCocoa.mm
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2014-05-24 15:15:49 +1000
committerNeil <nyamatongwe@gmail.com>2014-05-24 15:15:49 +1000
commitb0296d86a48642f2f381c3e0b11a022482ae25e3 (patch)
tree799c8fa56339d4bfc62ae4d0ff8ef058a228d70b /cocoa/PlatCocoa.mm
parent0e25a153a1970e5b895072f265c02bac9fd7f3fa (diff)
downloadscintilla-mirror-b0296d86a48642f2f381c3e0b11a022482ae25e3.tar.gz
Header include statements are now in a standardised order with that order
defined in scripts/HeaderOrder.txt.
Diffstat (limited to 'cocoa/PlatCocoa.mm')
-rw-r--r--cocoa/PlatCocoa.mm20
1 files changed, 11 insertions, 9 deletions
diff --git a/cocoa/PlatCocoa.mm b/cocoa/PlatCocoa.mm
index a0a0e8943..2225631a6 100644
--- a/cocoa/PlatCocoa.mm
+++ b/cocoa/PlatCocoa.mm
@@ -12,25 +12,27 @@
* This file is dual licensed under LGPL v2.1 and the Scintilla license (http://www.scintilla.org/License.txt).
*/
-#import "Platform.h"
-#import "ScintillaView.h"
-#import "ScintillaCocoa.h"
-#import "PlatCocoa.h"
+#include <assert.h>
+#include <sys/time.h>
+#include <cstdlib>
#include <cstring>
#include <cstdio>
-#include <cstdlib>
-#include <assert.h>
-#include <sys/time.h>
+
#include <stdexcept>
#include <vector>
#include <map>
+#import <Foundation/NSGeometry.h>
+
+#import "Platform.h"
+#import "ScintillaView.h"
+#import "ScintillaCocoa.h"
+#import "PlatCocoa.h"
+
#include "StringCopy.h"
#include "XPM.h"
-#import <Foundation/NSGeometry.h>
-
using namespace Scintilla;
extern sptr_t scintilla_send_message(void* sci, unsigned int iMessage, uptr_t wParam, sptr_t lParam);