summaryrefslogtreecommitdiff
path: root/frontends/riscos
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2016-12-29 15:15:41 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2016-12-29 15:15:41 +0000
commit7ca75a4cee083ded7f3607bba5e841c430556d93 (patch)
tree9fc006cf04a0935fc4f899e1260039cb5db89f4c /frontends/riscos
parent7fc6e6c0c0053e5ca4f4e09e8f4457a8125a167c (diff)
downloadnetsurf-7ca75a4cee083ded7f3607bba5e841c430556d93.tar.gz
netsurf-7ca75a4cee083ded7f3607bba5e841c430556d93.tar.bz2
RISC OS: Fix hotlist save.
The read and write paths for hotlist are different: #define CHOICES_PREFIX "<Choices$Write>.WWW.NetSurf." NSOPTION_STRING(hotlist_path, "NetSurf:Hotlist") NSOPTION_STRING(hotlist_save, CHOICES_PREFIX "Hotlist") This switches to using hotlist_save for writing.
Diffstat (limited to 'frontends/riscos')
-rw-r--r--frontends/riscos/hotlist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/riscos/hotlist.c b/frontends/riscos/hotlist.c
index 5eb30265a..ea85bc3b5 100644
--- a/frontends/riscos/hotlist.c
+++ b/frontends/riscos/hotlist.c
@@ -583,7 +583,7 @@ nserror ro_gui_hotlist_finalise(void)
return NSERROR_OK;
}
- res = hotlist_fini(nsoption_charp(hotlist_path));
+ res = hotlist_fini(nsoption_charp(hotlist_save));
if (res == NSERROR_OK) {
res = ro_corewindow_fini(&hotlist_window->core);