summaryrefslogtreecommitdiff
path: root/gtk/scaffolding.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-02-01 12:41:23 +0000
committerVincent Sanders <vince@kyllikki.org>2014-02-01 12:41:23 +0000
commit8bb0e87b1a8fc9872762f5caa856f64c4e9f1cdd (patch)
treed7f69b4d1aaf196513103004c0afb4d110d7be9f /gtk/scaffolding.h
parent1f62b5a980020b0e5df0e68cb476083ba2dc1fe5 (diff)
downloadnetsurf-8bb0e87b1a8fc9872762f5caa856f64c4e9f1cdd.tar.gz
netsurf-8bb0e87b1a8fc9872762f5caa856f64c4e9f1cdd.tar.bz2
make clipboard table operations static and remove unecessary includes
Diffstat (limited to 'gtk/scaffolding.h')
-rw-r--r--gtk/scaffolding.h14
1 files changed, 5 insertions, 9 deletions
diff --git a/gtk/scaffolding.h b/gtk/scaffolding.h
index 757da82fd..285f9bb53 100644
--- a/gtk/scaffolding.h
+++ b/gtk/scaffolding.h
@@ -19,15 +19,11 @@
#ifndef NETSURF_GTK_SCAFFOLDING_H
#define NETSURF_GTK_SCAFFOLDING_H 1
-#include <gtk/gtk.h>
-#include <glib.h>
-
-#include "content/hlcache.h"
-#include "desktop/gui.h"
-#include "desktop/plotters.h"
-#include "gtk/menu.h"
-#include "gtk/sexy_icon_entry.h"
+#include <stdbool.h>
+#include "utils/errors.h"
+struct hlcache_handle;
+struct gui_window;
typedef struct gtk_scaffolding nsgtk_scaffolding;
typedef enum {
@@ -182,6 +178,6 @@ void gui_window_set_title(struct gui_window *g, const char *title);
void gui_window_set_url(struct gui_window *g, const char *url);
void gui_window_start_throbber(struct gui_window *g);
void gui_window_stop_throbber(struct gui_window *g);
-void gui_set_search_ico(hlcache_handle *ico);
+void gui_set_search_ico(struct hlcache_handle *ico);
#endif /* NETSURF_GTK_SCAFFOLDING_H */