MCPcopy Create free account
hub / github.com/coreboot/coreboot / writeSizes

Method writeSizes

util/kconfig/qconf.cc:67–77  ·  view source on GitHub ↗

* Writes a list of integer values to the application settings. */

Source from the content-addressed store, hash-verified

65 * Writes a list of integer values to the application settings.
66 */
67bool ConfigSettings::writeSizes(const QString& key, const QList<int>& value)
68{
69 QStringList stringList;
70 QList<int>::ConstIterator it;
71
72 for (it = value.begin(); it != value.end(); ++it)
73 stringList.push_back(QString::number(*it));
74 setValue(key, stringList);
75
76 return true;
77}
78
79QIcon ConfigItem::symbolYesIcon;
80QIcon ConfigItem::symbolModIcon;

Callers 1

saveSettingsMethod · 0.80

Calls 1

numberFunction · 0.85

Tested by

no test coverage detected