summaryrefslogtreecommitdiff
path: root/cocoa
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-11-02 20:39:15 +0000
committerVincent Sanders <vince@kyllikki.org>2014-11-02 20:39:15 +0000
commit03abea12a76db9be29c6a56e453cadebc05983d6 (patch)
tree66c128fa9ccfe8538f6852a2fff2c7cb519cf59a /cocoa
parentad343eccb18454bab2f4e9464b88564c9da69649 (diff)
downloadnetsurf-03abea12a76db9be29c6a56e453cadebc05983d6.tar.gz
netsurf-03abea12a76db9be29c6a56e453cadebc05983d6.tar.bz2
fix errors introuced with previous header cleanup.
Diffstat (limited to 'cocoa')
-rw-r--r--cocoa/Tree.m1
-rw-r--r--cocoa/coordinates.h1
-rw-r--r--cocoa/plotter.m11
3 files changed, 8 insertions, 5 deletions
diff --git a/cocoa/Tree.m b/cocoa/Tree.m
index 5e0247ad7..05a52c802 100644
--- a/cocoa/Tree.m
+++ b/cocoa/Tree.m
@@ -21,6 +21,7 @@
#import "cocoa/font.h"
#import "cocoa/plotter.h"
+#import "desktop/plotters.h"
#import "desktop/tree.h"
@implementation Tree
diff --git a/cocoa/coordinates.h b/cocoa/coordinates.h
index ff76ac976..d5504941a 100644
--- a/cocoa/coordinates.h
+++ b/cocoa/coordinates.h
@@ -19,6 +19,7 @@
#ifndef COCOA_COORDINATES_H
#define COCOA_COORDINATES_H
+#include "utils/utils.h"
#import "desktop/browser.h"
#import "render/box.h"
diff --git a/cocoa/plotter.m b/cocoa/plotter.m
index 4f63424e1..61f53c192 100644
--- a/cocoa/plotter.m
+++ b/cocoa/plotter.m
@@ -18,14 +18,15 @@
#include <Cocoa/Cocoa.h>
-#import "cocoa/font.h"
-#import "cocoa/plotter.h"
-#import "cocoa/bitmap.h"
-
+#import "utils/log.h"
+#import "utils/utils.h"
#import "desktop/browser.h"
#import "desktop/plotters.h"
#import "desktop/plot_style.h"
-#import "utils/log.h"
+
+#import "cocoa/font.h"
+#import "cocoa/plotter.h"
+#import "cocoa/bitmap.h"
static void cocoa_plot_render_path(NSBezierPath *path,const plot_style_t *pstyle);
static void cocoa_plot_path_set_stroke_pattern(NSBezierPath *path,const plot_style_t *pstyle);