Fixed sign in fontoptions

This commit is contained in:
Vladimir
2015-06-20 00:54:02 +05:00
parent c43c1fbb2a
commit dfdbee3885

View File

@@ -158,12 +158,12 @@ bool FontOptions::loadXmlElement(QDomElement *element)
if (!e.isNull()) {
if (e.tagName() == FontOptions::FieldBom) {
QString str = e.text();
uBom = str.toInt(&result);
uBom = str.toUInt(&result);
}
if (e.tagName() == FontOptions::FieldSortOrder) {
QString str = e.text();
uSortOrder = str.toInt(&result);
uSortOrder = str.toUInt(&result);
}
if (e.tagName() == FontOptions::FieldCodec) {