From 21a2bfc53c3067febb00ef97e91b099e81bf939b Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Mon, 6 Jul 2009 10:38:13 +0000 Subject: Style guide indentation. svn path=/trunk/netsurf/; revision=8345 --- render/textplain.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/render/textplain.c b/render/textplain.c index 8f896bd5c..50ce937dd 100644 --- a/render/textplain.c +++ b/render/textplain.c @@ -340,7 +340,7 @@ bool textplain_redraw(struct content *c, int x, int y, struct textplain_line *line = c->data.textplain.physical_line; struct rect clip; size_t length; - plot_style_t *plot_style_highlight; + plot_style_t *plot_style_highlight; clip.x0 = clip_x0; clip.y0 = clip_y0; @@ -366,9 +366,9 @@ bool textplain_redraw(struct content *c, int x, int y, /* choose a suitable background colour for any highlighted text */ if ((background_colour & 0x808080) == 0x808080) - plot_style_highlight = plot_style_fill_black; - else - plot_style_highlight = plot_style_fill_white; + plot_style_highlight = plot_style_fill_black; + else + plot_style_highlight = plot_style_fill_white; x += MARGIN * scale; y += MARGIN * scale; @@ -437,8 +437,8 @@ bool textplain_redraw(struct content *c, int x, int y, if (highlighted) { int sy = y + (lineno * scaled_line_height); - if (!plot.fill(tx, sy, - ntx, sy + scaled_line_height, + if (!plot.fill(tx, sy, + ntx, sy + scaled_line_height, plot_style_highlight)) return false; } -- cgit v1.2.3