* Writes a list of integer values to the application settings. */
| 65 | * Writes a list of integer values to the application settings. |
| 66 | */ |
| 67 | bool 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 | |
| 79 | QIcon ConfigItem::symbolYesIcon; |
| 80 | QIcon ConfigItem::symbolModIcon; |