0
0
mirror of https://github.com/fralx/LimeReport.git synced 2024-12-23 16:22:58 +03:00

Merge pull request #2 from vanger13/master

fix #1
This commit is contained in:
Segey 2016-02-17 14:14:55 +03:00
commit c25d65753c

View File

@ -177,7 +177,7 @@ void XmlFontSerializator::save(const QVariant &value, QString name)
_node.setAttribute("pointSize",font.pointSize());
saveBool(_node,"bold",font.bold());
saveBool(_node,"italic",font.italic());
saveBool(_node,"undeline",font.underline());
saveBool(_node,"underline",font.underline());
node()->appendChild(_node);
}