diff options
Diffstat (limited to 'src/css.cc')
-rw-r--r-- | src/css.cc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -481,7 +481,7 @@ void CssContext::buildUserAgentStyle () { "th {font-weight: bolder; text-align: center}" "code, tt, pre, samp, kbd {font-family: monospace}"; - a_Css_parse (this, cssBuf, strlen (cssBuf), CSS_ORIGIN_USER_AGENT); + CssParser::parse (this, cssBuf, strlen (cssBuf), CSS_ORIGIN_USER_AGENT); } void CssContext::buildUserStyle () { @@ -489,7 +489,7 @@ void CssContext::buildUserStyle () { char *filename = dStrconcat(dGethomedir(), "/.dillo/style.css", NULL); if ((style = a_Misc_file2dstr(filename))) { - a_Css_parse (this, style->str, style->len, CSS_ORIGIN_USER); + CssParser::parse (this, style->str, style->len, CSS_ORIGIN_USER); dStr_free (style, 1); } dFree (filename); |