summaryrefslogtreecommitdiff
path: root/src/html_common.hh
diff options
context:
space:
mode:
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); }
};