From 7ca75a4cee083ded7f3607bba5e841c430556d93 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Thu, 29 Dec 2016 15:15:41 +0000 Subject: RISC OS: Fix hotlist save. The read and write paths for hotlist are different: #define CHOICES_PREFIX ".WWW.NetSurf." NSOPTION_STRING(hotlist_path, "NetSurf:Hotlist") NSOPTION_STRING(hotlist_save, CHOICES_PREFIX "Hotlist") This switches to using hotlist_save for writing. --- frontends/riscos/hotlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'frontends/riscos') 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); -- cgit v1.2.3