Displaying 1 result from an estimated 1 matches for "ccssettingactionvalue".
2007 Aug 13
0
[PATCH] Use default item separator for lists.
...key);
CCSSettingColorValue *array =
new CCSSettingColorValue[list.count() ];
@@ -714,7 +714,7 @@ readSetting (CCSContext *c,
case TypeAction:
{
- QStringList list = cfg->readListEntry (key, ';');
+ QStringList list = cfg->readListEntry (key);
CCSSettingActionValue *array =
new CCSSettingActionValue[list.count() ];
@@ -1095,7 +1095,7 @@ writeSetting (CCSContext *c,
l = l->next;
}
- cfg->writeEntry (key, list, ';');
+ cfg->writeEntry (key, list);
}
break;
@@ -1113,7 +1113,7 @@ writeSetting (CCSContext *c,...