summaryrefslogtreecommitdiff
path: root/debug/optionsd.c
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2004-02-13 16:09:12 +0000
committerJames Bursa <james@netsurf-browser.org>2004-02-13 16:09:12 +0000
commit1319ff78c89fd0c34feea187ca3d67058875fbe6 (patch)
treeb3a1bb74c14305e38991db53e9119c72084daa87 /debug/optionsd.c
parentadd94ad0381bae4889dcd46620b8bfe4e4f443ce (diff)
downloadnetsurf-1319ff78c89fd0c34feea187ca3d67058875fbe6.tar.gz
netsurf-1319ff78c89fd0c34feea187ca3d67058875fbe6.tar.bz2
[project @ 2004-02-13 16:09:12 by bursa]
Clean up and rewrite options code. svn path=/import/netsurf/; revision=536
Diffstat (limited to 'debug/optionsd.c')
-rw-r--r--debug/optionsd.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/debug/optionsd.c b/debug/optionsd.c
deleted file mode 100644
index 2490c1f2f..000000000
--- a/debug/optionsd.c
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * This file is part of NetSurf, http://netsurf.sourceforge.net/
- * Licensed under the GNU General Public License,
- * http://www.opensource.org/licenses/gpl-license
- * Copyright 2003 James Bursa <bursa@users.sourceforge.net>
- */
-
-#include "netsurf/desktop/options.h"
-#include <stdio.h>
-#include <string.h>
-#include "netsurf/utils/log.h"
-#include "netsurf/utils/utils.h"
-
-struct options OPTIONS;
-
-void options_init(struct options* opt)
-{
- opt->http = 0;
- opt->http_proxy = strdup("");
- opt->http_port = 8080;
- opt->use_mouse_gestures = 0;
- opt->allow_text_selection = 1;
- opt->use_riscos_elements = 1;
- opt->show_toolbar = 1;
- opt->show_print_preview = 0;
- opt->theme = strdup("Default");
-}
-