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_div.cpp
blob
983d45ab2aabd4291507f519ff0939f9a932ea20
1
#include
"html.h"
2
#include
"el_div.h"
3
4
5
litehtml
::
el_div
::
el_div
(
const
document
::
ptr
&
doc
) :
html_tag
(
doc
)
6
{
7
8
}
9
10
void
litehtml
::
el_div
::
parse_attributes
()
11
{
12
const char
*
str
=
get_attr
(
"align"
);
13
if
(
str
)
14
{
15
m_style
.
add_property
(
_text_align_
,
str
);
16
}
17
html_tag
::
parse_attributes
();
18
}