summaryrefslogtreecommitdiff
path: root/riscos/debugwin.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2004-08-13 16:59:42 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2004-08-13 16:59:42 +0000
commita1811d3eef319dafd1c108fc7b3fb18d870f3c82 (patch)
tree59cdce4a9c7191a1a878354b000a0a552ce6ccc9 /riscos/debugwin.c
parentad36ab559787fdba918466a31b2fbf8076a6d7d9 (diff)
downloadnetsurf-a1811d3eef319dafd1c108fc7b3fb18d870f3c82.tar.gz
netsurf-a1811d3eef319dafd1c108fc7b3fb18d870f3c82.tar.bz2
[project @ 2004-08-13 16:59:42 by jmb]
Improve column spacing svn path=/import/netsurf/; revision=1223
Diffstat (limited to 'riscos/debugwin.c')
-rw-r--r--riscos/debugwin.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/riscos/debugwin.c b/riscos/debugwin.c
index d1b692bb0..203f90a80 100644
--- a/riscos/debugwin.c
+++ b/riscos/debugwin.c
@@ -124,9 +124,9 @@ void ro_gui_debugwin_redraw_plot(wimp_draw *redraw)
xwimptextop_paint(0, "url", x0 + 4, y0 - 20);
xwimptextop_paint(0, "type", x0 + 600, y0 - 20);
xwimptextop_paint(0, "fresh", x0 + 680, y0 - 20);
- xwimptextop_paint(0, "mime_type", x0 + 750, y0 - 20);
- xwimptextop_paint(0, "users", x0 + 880, y0 - 20);
- xwimptextop_paint(0, "status", x0 + 950, y0 - 20);
+ xwimptextop_paint(0, "mime_type", x0 + 760, y0 - 20);
+ xwimptextop_paint(0, "users", x0 + 910, y0 - 20);
+ xwimptextop_paint(0, "status", x0 + 990, y0 - 20);
xwimptextop_paint(0, "size", x0 + 1100, y0 - 20);
xwimp_set_font_colours(wimp_COLOUR_BLACK, wimp_COLOUR_WHITE);
@@ -140,14 +140,14 @@ void ro_gui_debugwin_redraw_plot(wimp_draw *redraw)
x0 + 710, y);
if (content->mime_type)
xwimptextop_paint(0, content->mime_type,
- x0 + 750, y);
+ x0 + 760, y);
users = 0;
for (user = content->user_list->next; user; user = user->next)
users++;
snprintf(s, sizeof s, "%u", users);
- xwimptextop_paint(wimptextop_RJUSTIFY, s, x0 + 930, y);
+ xwimptextop_paint(wimptextop_RJUSTIFY, s, x0 + 960, y);
xwimptextop_paint(0, content_status_name[content->status],
- x0 + 950, y);
+ x0 + 990, y);
snprintf(s, sizeof s, "%u", content->size);
xwimptextop_paint(wimptextop_RJUSTIFY, s, x0 + 1190, y);
size += content->size;