mirror of
https://github.com/riuson/lcd-image-converter.git
synced 2026-03-07 00:27:00 +01:00
Fixed sign in fontoptions
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user