diff options
Diffstat (limited to 'src/plain.cc')
-rw-r--r-- | src/plain.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/plain.cc b/src/plain.cc index d09f6d79..810efda1 100644 --- a/src/plain.cc +++ b/src/plain.cc @@ -95,12 +95,12 @@ DilloPlain::DilloPlain(BrowserWindow *p_bw) state = ST_SeekingEol; Layout *layout = (Layout*) bw->render_layout; - StyleEngine styleEngine (layout); + // TODO (1x) No URL? + StyleEngine styleEngine (layout, NULL); - // TODO (3x) No URL? - styleEngine.startElement ("body", bw, NULL); - styleEngine.startElement ("pre", bw, NULL); - widgetStyle = styleEngine.wordStyle (bw, NULL); + styleEngine.startElement ("body", bw); + styleEngine.startElement ("pre", bw); + widgetStyle = styleEngine.wordStyle (bw); widgetStyle->ref (); /* The context menu */ |