repo.or.cz
/
claws.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Disable stack execution on plugins
[claws.git]
/
src
/
plugins
/
litehtml_viewer
/
litehtml
/
el_title.cpp
blob
f0e42311b4d00a2436cd6c380c5413107fab220c
1
#include
"html.h"
2
#include
"el_title.h"
3
#include
"document.h"
4
5
litehtml
::
el_title
::
el_title
(
const
std
::
shared_ptr
<
document
>&
doc
) :
html_tag
(
doc
)
6
{
7
8
}
9
10
void
litehtml
::
el_title
::
parse_attributes
()
11
{
12
string text
;
13
get_text
(
text
);
14
get_document
()->
container
()->
set_caption
(
text
.
c_str
());
15
}
16