summaryrefslogtreecommitdiff
path: root/riscos/global_history.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2012-03-22 09:34:34 +0000
committerVincent Sanders <vince@netsurf-browser.org>2012-03-22 09:34:34 +0000
commit1490b52a6b96b6a69a0c4fe9e0515dc717425128 (patch)
tree8caba44a9da98e6cebf4f188e3232534b1596a4d /riscos/global_history.c
parent0797bf5a5731b2c8d55105b453530584ea4e1f5b (diff)
downloadnetsurf-1490b52a6b96b6a69a0c4fe9e0515dc717425128.tar.gz
netsurf-1490b52a6b96b6a69a0c4fe9e0515dc717425128.tar.bz2
NetSurf options rework (a=vince r=daniels,jmb)
svn path=/trunk/netsurf/; revision=13548
Diffstat (limited to 'riscos/global_history.c')
-rw-r--r--riscos/global_history.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/riscos/global_history.c b/riscos/global_history.c
index a6b43b863..ca51b7253 100644
--- a/riscos/global_history.c
+++ b/riscos/global_history.c
@@ -36,7 +36,7 @@
#include "riscos/global_history.h"
#include "riscos/gui.h"
#include "riscos/menus.h"
-#include "riscos/options.h"
+#include "desktop/options.h"
#include "riscos/save.h"
#include "riscos/toolbar.h"
#include "riscos/treeview.h"
@@ -102,7 +102,7 @@ void ro_gui_global_history_postinitialise(void)
if (global_history_window.toolbar != NULL) {
ro_toolbar_add_buttons(global_history_window.toolbar,
global_history_toolbar_buttons,
- option_toolbar_history);
+ nsoption_charp(toolbar_history));
ro_toolbar_rebuild(global_history_window.toolbar);
}
@@ -246,9 +246,7 @@ void ro_gui_global_history_toolbar_update_buttons(void)
void ro_gui_global_history_toolbar_save_buttons(char *config)
{
- if (option_toolbar_history != NULL)
- free(option_toolbar_history);
- option_toolbar_history = config;
+ nsoption_set_charp(toolbar_history, config);
ro_gui_save_options();
}