Displaying 1 result from an estimated 1 matches for "writeentry".
Did you mean:
write_entry
2007 Aug 13
0
[PATCH] Use default item separator for lists.
...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,
l = l->next;
}
- cfg->writeEntry (key, list, ';');
+ cfg->writeEntry (key, list);
}
break;
@@ -1131,7 +1131,7 @@ wri...