Disable stack execution on plugins
[claws.git] / src / plugins / litehtml_viewer / litehtml / el_comment.cpp
blob1ec934d046a36d12d6c1eb690de32784fab8a8f2
1 #include "html.h"
2 #include "el_comment.h"
4 litehtml::el_comment::el_comment(const std::shared_ptr<document>& doc) : element(doc)
6 //m_skip = true;
9 bool litehtml::el_comment::is_comment() const
11 return true;
14 void litehtml::el_comment::get_text( string& text )
16 text += m_text;
19 void litehtml::el_comment::set_data( const char* data )
21 if(data)
23 m_text += data;