summaryrefslogtreecommitdiff
path: root/desktop/gui_factory.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-05-10 10:22:10 +0100
committerVincent Sanders <vince@kyllikki.org>2014-05-10 10:22:10 +0100
commit16b11e7238dea2c74a713b6f601d5f506bdaadcf (patch)
treed23dab3fc90645ac976b001e09538dbff4017f5f /desktop/gui_factory.h
parent429d6e20f7989bb65736fb6f0058c33add7b0ac5 (diff)
downloadnetsurf-16b11e7238dea2c74a713b6f601d5f506bdaadcf.tar.gz
netsurf-16b11e7238dea2c74a713b6f601d5f506bdaadcf.tar.bz2
ensure operations tables are registered as early as possible.
Diffstat (limited to 'desktop/gui_factory.h')
-rw-r--r--desktop/gui_factory.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/gui_factory.h b/desktop/gui_factory.h
index dc94b3a16..3c8661577 100644
--- a/desktop/gui_factory.h
+++ b/desktop/gui_factory.h
@@ -26,7 +26,7 @@
#include "desktop/gui.h"
/** The global operation table */
-extern struct gui_table *guit;
+extern struct netsurf_table *guit;
/** register and verify global operation table
*
@@ -34,6 +34,6 @@ extern struct gui_table *guit;
* @return NSERROR_OK on success or error code on faliure. On faliure
* global table will not be initialised
*/
-nserror gui_factory_register(struct gui_table *gt);
+nserror gui_factory_register(struct netsurf_table *gt);
#endif