QSettings-store-and-read-Hex-value

From Qt Wiki
Revision as of 16:38, 14 January 2015 by Maintenance script (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

QSettings store and read Hex value

const QString str = QLatin1String(“0×23”);
bool ok;
const unsigned int parsedValue = str.toUInt(&ok, 16);
if (!ok) { //Parsing failed, handle error here
}

qDebug() << parsedValue;

QSettings settings;

Store
settings.setValue(‘key’,str);

Read
settings.value(‘key’).toString.toUInt(&ok,16)