NC_ not working here, remove it
[claws.git] / src / plugins / litehtml_viewer / litehtml / el_para.cpp
blob5d79151351695e6ad28b38349bd33b7b0836ecf3
1 #include "html.h"
2 #include "el_para.h"
3 #include "document.h"
5 litehtml::el_para::el_para(const std::shared_ptr<document>& doc) : html_tag(doc)
9 void litehtml::el_para::parse_attributes()
11 const char* str = get_attr("align");
12 if(str)
14 m_style.add_property(_text_align_, str);
17 html_tag::parse_attributes();