summaryrefslogtreecommitdiff
path: root/riscos/theme_install.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/theme_install.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/theme_install.c')
-rw-r--r--riscos/theme_install.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/riscos/theme_install.c b/riscos/theme_install.c
index 574a380d4..e5d5aafa3 100644
--- a/riscos/theme_install.c
+++ b/riscos/theme_install.c
@@ -28,7 +28,7 @@
#include "desktop/browser.h"
#include "riscos/dialog.h"
#include "riscos/gui.h"
-#include "riscos/options.h"
+#include "desktop/options.h"
#include "riscos/theme.h"
#include "riscos/wimp.h"
#include "riscos/wimp_event.h"
@@ -198,7 +198,7 @@ bool ro_gui_theme_install_apply(wimp_w w)
/* simply overwrite previous theme versions */
snprintf(theme_save, sizeof theme_save, "%s.%s",
- option_theme_save, theme_file);
+ nsoption_charp(theme_save), theme_file);
theme_save[sizeof theme_save - 1] = '\0';
@@ -222,8 +222,7 @@ bool ro_gui_theme_install_apply(wimp_w w)
if (!theme_install || !ro_gui_theme_apply(theme_install)) {
warn_user("ThemeApplyErr", 0);
} else {
- free(option_theme);
- option_theme = strdup(theme_install->leafname);
+ nsoption_set_charp(theme, strdup(theme_install->leafname));
}
free(theme_file);
ro_gui_save_options();