aboutsummaryrefslogtreecommitdiff
path: root/src/html_common.hh
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2014-04-01 21:48:15 +0200
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2014-04-01 21:48:15 +0200
commitf284ce5c34cdf37854135524814bbacbd2932f25 (patch)
tree62047de8c15b27fab0caa0a9105a15dfea156c87 /src/html_common.hh
parent4e3f41b9e5307fd951c710818687f96e8a68ca35 (diff)
resolve CSS background-image URLs relative to styleheet URL
Diffstat (limited to 'src/html_common.hh')
-rw-r--r--src/html_common.hh12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/html_common.hh b/src/html_common.hh
index de3069cb..147807b3 100644
--- a/src/html_common.hh
+++ b/src/html_common.hh
@@ -222,18 +222,18 @@ public:
// useful shortcuts
inline void startElement (int tag)
- { styleEngine->startElement (tag, bw, base_url); }
+ { styleEngine->startElement (tag, bw); }
inline void startElement (const char *tagname)
- { styleEngine->startElement (tagname, bw, base_url); }
+ { styleEngine->startElement (tagname, bw); }
inline dw::core::style::Style *backgroundStyle ()
- { return styleEngine->backgroundStyle (bw, base_url); }
+ { return styleEngine->backgroundStyle (bw); }
inline dw::core::style::Style *style ()
- { return styleEngine->style (bw, base_url); }
+ { return styleEngine->style (bw); }
inline dw::core::style::Style *wordStyle ()
- { return styleEngine->wordStyle (bw, base_url); }
+ { return styleEngine->wordStyle (bw); }
- inline void restyle () { styleEngine->restyle (bw, base_url); }
+ inline void restyle () { styleEngine->restyle (bw); }
};