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 | bc1d4eb9737091681cfc3a3161280d4ecd1853f9 (patch) | |
tree | 0aeb7392c008253f7315efd183f349eece0e849f | |
parent | c570c7c6fb1abc780510efd5eee6c3a9131a54e4 (diff) | |
download | scintilla-mirror-bc1d4eb9737091681cfc3a3161280d4ecd1853f9.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; |