fix bug 4376, 'Litehtml breaks locale'
[claws.git] / src / plugins / litehtml_viewer / litehtml / el_break.cpp
1 #include "html.h"
2 #include "el_break.h"
3
4 litehtml::el_break::el_break(const std::shared_ptr<litehtml::document>& doc) : html_tag(doc)
5 {
6
7 }
8
9 litehtml::el_break::~el_break()
10 {
11
12 }
13
14 bool litehtml::el_break::is_break() const
15 {
16         return true;
17 }
18