summaryrefslogtreecommitdiff
path: root/debug
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2006-03-09 18:55:30 +0000
committerJames Bursa <james@netsurf-browser.org>2006-03-09 18:55:30 +0000
commit4b3d4f97a8955ee72077623662ab4b5e045f6647 (patch)
treeacb2d399e14c11afc81674eac31a8d58ac903202 /debug
parent77159f9e9a2a960b31b0bab37f03ea931ccc05b9 (diff)
downloadnetsurf-4b3d4f97a8955ee72077623662ab4b5e045f6647.tar.gz
netsurf-4b3d4f97a8955ee72077623662ab4b5e045f6647.tar.bz2
[project @ 2006-03-09 18:55:30 by bursa]
Partly fix debug build. svn path=/import/netsurf/; revision=2113
Diffstat (limited to 'debug')
-rw-r--r--debug/netsurfd.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/debug/netsurfd.c b/debug/netsurfd.c
index 645d43aa8..a185255cd 100644
--- a/debug/netsurfd.c
+++ b/debug/netsurfd.c
@@ -58,7 +58,7 @@ int main(int argc, char *argv[])
default_stylesheet_url = malloc(200);
adblock_stylesheet_url = malloc(200);
getcwd(url, sizeof url);
- snprintf(default_stylesheet_url, 200, "file:%s/CSS", url);
+ snprintf(default_stylesheet_url, 200, "file:%s/ns.css", url);
snprintf(adblock_stylesheet_url, 200, "file:%s/AdBlock", url);
#endif
@@ -175,11 +175,11 @@ void bitmap_set_opaque(struct bitmap *bitmap, bool opaque) {}
void tree_initialise_redraw(struct tree *tree) {}
void tree_redraw_area(struct tree *tree, int x, int y, int width, int height) {}
-void tree_draw_line(struct tree *tree, int x, int y, int width, int height) {}
+void tree_draw_line(int x, int y, int width, int height) {}
void tree_draw_node_element(struct tree *tree, struct node_element *element) {}
void tree_draw_node_expansion(struct tree *tree, struct node *node) {}
void tree_recalculate_node_element(struct node_element *element) {}
-void tree_update_URL_node(struct node *node) {}
+void tree_update_URL_node(struct node *node, struct url_content *data) {}
void tree_resized(struct tree *tree) {}
void tree_set_node_sprite_folder(struct node *node) {}
@@ -191,7 +191,8 @@ void schedule_run(void) {}
bool selection_highlighted(struct selection *s, struct box *box,
unsigned *start_idx, unsigned *end_idx) { return false; }
-bool gui_search_term_highlighted(struct gui_window *g, struct box *box,
+bool gui_search_term_highlighted(struct gui_window *g,
+ unsigned start_offset, unsigned end_offset,
unsigned *start_idx, unsigned *end_idx) { return false; }
const char *local_encoding_name(void) { return "ISO-8859-1"; }