diff options
author | nyamatongwe <nyamatongwe@gmail.com> | 2013-07-23 11:20:04 +1000 |
---|---|---|
committer | nyamatongwe <nyamatongwe@gmail.com> | 2013-07-23 11:20:04 +1000 |
commit | cb3550e77b1d517bc4475f9383cddb3702e1966f (patch) | |
tree | 0704192dc16596edab480f89025ed3d5cd63f7df | |
parent | 1e60a227ca7eb081b7eb02b0aef9bbb8705733dc (diff) | |
download | scintilla-mirror-cb3550e77b1d517bc4475f9383cddb3702e1966f.tar.gz |
Made header inclusion more consistent.
-rw-r--r-- | cocoa/PlatCocoa.mm | 6 | ||||
-rw-r--r-- | cocoa/ScintillaCocoa.mm | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/cocoa/PlatCocoa.mm b/cocoa/PlatCocoa.mm index 69eb160eb..2d29bf2be 100644 --- a/cocoa/PlatCocoa.mm +++ b/cocoa/PlatCocoa.mm @@ -12,9 +12,8 @@ * This file is dual licensed under LGPL v2.1 and the Scintilla license (http://www.scintilla.org/License.txt). */ -#import <ScintillaView.h> - -#include "PlatCocoa.h" +#import "ScintillaView.h" +#import "PlatCocoa.h" #include <cstring> #include <cstdio> @@ -22,6 +21,7 @@ #include <assert.h> #include <sys/time.h> #include <stdexcept> +#include <vector> #include <map> #include "XPM.h" diff --git a/cocoa/ScintillaCocoa.mm b/cocoa/ScintillaCocoa.mm index b1d950163..374c79128 100644 --- a/cocoa/ScintillaCocoa.mm +++ b/cocoa/ScintillaCocoa.mm @@ -21,8 +21,8 @@ #import <QuartzCore/CAAnimation.h> #import <QuartzCore/CATransaction.h> -#include "ScintillaView.h" -#include "PlatCocoa.h" +#import "ScintillaView.h" +#import "PlatCocoa.h" using namespace Scintilla; |