diff options
author | Michael Drake <tlsa@netsurf-browser.org> | 2012-10-17 14:20:18 +0100 |
---|---|---|
committer | Michael Drake <tlsa@netsurf-browser.org> | 2012-10-17 14:20:18 +0100 |
commit | 35eb251244ee360cedef6ec1143e65b59da604a8 (patch) | |
tree | b1f508161b6d7502abd534d786650ca7507373a5 /beos/gui.cpp | |
parent | 26ac642ef9f6bb439f10a7fc3188823ba1f7bffd (diff) | |
download | netsurf-35eb251244ee360cedef6ec1143e65b59da604a8.tar.gz |
Fix "error setting certificate verify locations" problem when the Choices file doesn't exist. Now there's a single place for front ends to set options overrides. Fix nsoption_setnull_charp leak.
Diffstat (limited to 'beos/gui.cpp')
-rw-r--r-- | beos/gui.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/beos/gui.cpp b/beos/gui.cpp index dc3c33538..b275616f5 100644 --- a/beos/gui.cpp +++ b/beos/gui.cpp @@ -475,6 +475,12 @@ int main(int argc, char** argv) return 0; } +/* Documented in desktop/options.h */ +void gui_options_init_defaults(void) +{ + /* Set defaults for absent option strings */ +} + void gui_init(int argc, char** argv) { |