vCalendar: Honor VTIMEZONE component if present
[claws.git] / src / plugins / litehtml_viewer / litehtml / el_cdata.cpp
blobe5948bff13dfe9f609858c4d8813bd963a53d4af
1 #include "html.h"
2 #include "el_cdata.h"
4 litehtml::el_cdata::el_cdata(const std::shared_ptr<document>& doc) : element(doc)
6 //m_skip = true;
9 void litehtml::el_cdata::get_text( string& text )
11 text += m_text;
14 void litehtml::el_cdata::set_data( const char* data )
16 if(data)
18 m_text += data;