QSettings-store-and-read-Hex-value

From Qt Wiki
Jump to navigation Jump to search
This article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine.
Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean.

QSettings store and read Hex value

const QString str = QLatin1String("0x23"); 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