diff options
author | corvid <corvid@lavabit.com> | 2009-04-19 10:25:22 +0200 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2009-04-19 10:25:22 +0200 |
commit | 8ab9de15c7e52f8ab201412649f946b1922b1944 (patch) | |
tree | e068a7748c272e3493af5f19f7f38fc5b751e66c /src/cssparser.hh | |
parent | b358beb5b91f6ef1bf067a2c3f0268f8b44af368 (diff) |
wrap long lines in src/ css code
Diffstat (limited to 'src/cssparser.hh')
-rw-r--r-- | src/cssparser.hh | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/cssparser.hh b/src/cssparser.hh index 8011a342..36d80834 100644 --- a/src/cssparser.hh +++ b/src/cssparser.hh @@ -7,8 +7,8 @@ class CssParser { private: typedef enum { - CSS_TK_DECINT, CSS_TK_FLOAT, CSS_TK_COLOR, CSS_TK_SYMBOL, CSS_TK_STRING, - CSS_TK_CHAR, CSS_TK_END + CSS_TK_DECINT, CSS_TK_FLOAT, CSS_TK_COLOR, CSS_TK_SYMBOL, + CSS_TK_STRING, CSS_TK_CHAR, CSS_TK_END } CssTokenType; static const int maxStrLen = 256; @@ -41,9 +41,10 @@ class CssParser { void parseRuleset(); public: - static CssPropertyList *parseDeclarationBlock(const char *buf, int buflen); - static void parse(DilloHtml *html, DilloUrl *url, CssContext *context, const char *buf, int buflen, - CssOrigin origin); + static CssPropertyList *parseDeclarationBlock(const char *buf, + int buflen); + static void parse(DilloHtml *html, DilloUrl *url, CssContext *context, + const char *buf, int buflen, CssOrigin origin); static const char *propertyNameString(CssPropertyName name); }; |