diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2014-01-09 20:57:51 +0100 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2014-01-09 20:57:51 +0100 |
commit | 261a91428881c7735c0b997ff8f03c8f5981ff03 (patch) | |
tree | bff76fa7c78fa456699bb864ed70ba9c0e5ee635 /src/cssparser.cc | |
parent | 0ebdb086c956a168a9d8ecf775edb536d0277629 (diff) |
some whitespace cleanups
Diffstat (limited to 'src/cssparser.cc')
-rw-r--r-- | src/cssparser.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/cssparser.cc b/src/cssparser.cc index 47632979..be5032d6 100644 --- a/src/cssparser.cc +++ b/src/cssparser.cc @@ -275,7 +275,7 @@ typedef struct { CSS_SHORTHAND_BORDER, /* special, used for 'border' */ CSS_SHORTHAND_FONT, /* special, used for 'font' */ } type; - const CssPropertyName * properties;/* CSS_SHORTHAND_MULTIPLE: + const CssPropertyName *properties; /* CSS_SHORTHAND_MULTIPLE: * must be terminated by -1 * CSS_SHORTHAND_DIRECTIONS: * must have length 4 @@ -859,7 +859,7 @@ bool CssParser::parseRgbColor(int32_t *c) { bool CssParser::parseValue(CssPropertyName prop, CssValueType type, - CssPropertyValue * val) + CssPropertyValue *val) { CssLengthType lentype; bool found, ret = false; @@ -1187,8 +1187,8 @@ static int Css_shorthand_info_cmp(const void *a, const void *b) ((CssShorthandInfo *) b)->symbol); } -void CssParser::parseDeclaration(CssPropertyList * props, - CssPropertyList * importantProps) +void CssParser::parseDeclaration(CssPropertyList *props, + CssPropertyList *importantProps) { CssPropertyInfo pi = {NULL, {CSS_TYPE_UNUSED}, NULL}, *pip; CssShorthandInfo *sip; @@ -1703,7 +1703,7 @@ void CssParser::ignoreStatement() } } -void CssParser::parse(DilloHtml *html, DilloUrl *url, CssContext * context, +void CssParser::parse(DilloHtml *html, DilloUrl *url, CssContext *context, const char *buf, int buflen, CssOrigin origin) { |