diff options
author | Jorge Arellano Cid <jcid@dillo.org> | 2008-11-20 14:11:10 -0300 |
---|---|---|
committer | Jorge Arellano Cid <jcid@dillo.org> | 2008-11-20 14:11:10 -0300 |
commit | 18a3ce28a0932c2402a937273a67458a858bc17c (patch) | |
tree | 51bb37212f79243eabdb4964248ca9c9b8e2f101 /src/html.cc | |
parent | 5254928eed42186869555ac082eb184dd4522ac3 (diff) |
Removed lots of compiler warnings, and formatted code to 80 columns.
Used: indent -kr -st -sc -i3 -bad -nbbo -nut
Diffstat (limited to 'src/html.cc')
-rw-r--r-- | src/html.cc | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/html.cc b/src/html.cc index 4ebd97ad..3edd59a4 100644 --- a/src/html.cc +++ b/src/html.cc @@ -2366,9 +2366,10 @@ static void Html_tag_open_object(DilloHtml *html, const char *tag, int tagsize) html->visited_color /* a_Color_vc(html->visited_color, - html->styleEngine->style ()->color->getColor(), + html->styleEngine->style()->color->getColor(), html->link_color, - html->styleEngine->style ()->backgroundColor->getColor()), + html->styleEngine->style()->backgroundColor->getColor() + ); */ ); } else { @@ -2690,7 +2691,8 @@ static void Html_tag_open_li(DilloHtml *html, const char *tag, int tagsize) BUG_MSG("illegal negative LIST VALUE attribute; Starting from 0\n"); *list_number = 0; } - numtostr((*list_number)++, buf, 16, html->styleEngine->style ()->listStyleType); + numtostr((*list_number)++, buf, 16, + html->styleEngine->style ()->listStyleType); list_item->initWithText (dStrdup(buf), word_style); list_item->addSpace (word_style); html->PrevWasSPC = true; |