aboutsummaryrefslogtreecommitdiff
path: root/src/prefs.c
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-03-10 12:54:59 +0100
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-03-10 12:54:59 +0100
commitd4a1b71555071730503f09db02c562e48cf06419 (patch)
tree88a8d7940c408aa525522e7fcb053d6c71d08242 /src/prefs.c
parent45033ba07b58cafbc9fa9ab6881c92dd92243aaf (diff)
replace visited_color dillorc option
to change the color of visited links add a line :visited {color: red} to your ~/.dillo/style.css file instead.
Diffstat (limited to 'src/prefs.c')
-rw-r--r--src/prefs.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/prefs.c b/src/prefs.c
index 76200470..ddd44d72 100644
--- a/src/prefs.c
+++ b/src/prefs.c
@@ -43,8 +43,6 @@
#define D_SEARCH_URL "http://www.google.com/search?ie=UTF-8&oe=UTF-8&q=%s"
#define D_SAVE_DIR "/tmp/"
-#define DW_COLOR_DEFAULT_VLINK 0x800080
-
/*-----------------------------------------------------------------------------
* Global Data
*---------------------------------------------------------------------------*/
@@ -199,7 +197,6 @@ static int Prefs_parse_dillorc(void)
{ "show_url", &prefs.show_url, PREFS_BOOL },
{ "small_icons", &prefs.small_icons, PREFS_BOOL },
{ "start_page", &prefs.start_page, PREFS_URL },
- { "visited_color", &prefs.visited_color, PREFS_COLOR },
{ "w3c_plus_heuristics", &prefs.w3c_plus_heuristics, PREFS_BOOL }
};
@@ -306,7 +303,6 @@ void a_Prefs_init(void)
prefs.show_url=TRUE;
prefs.small_icons = FALSE;
prefs.start_page = a_Url_new(DILLO_START_PAGE, NULL);
- prefs.visited_color = DW_COLOR_DEFAULT_VLINK;
prefs.w3c_plus_heuristics = TRUE;
/* this locale stuff is to avoid parsing problems with float numbers */