QSettings-store-and-read-Hex-value: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
(No difference)
|
Revision as of 16:38, 14 January 2015
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)