X-Git-Url: http://git.maemo.org/git/?p=modest;a=blobdiff_plain;f=src%2Fmodest-conf.h;fp=src%2Fmodest-conf.h;h=a2c483c996c0ec7cc598381fe86c9faf9022afaf;hp=80e34b465dc7c5e4a807d8c93a28d42de97b1128;hb=e82d0e58b454379215411c36eb4edaae13b41bbb;hpb=5ad308e7d7f295bc3a1d653b9c5ab49980a34b7e diff --git a/src/modest-conf.h b/src/modest-conf.h index 80e34b4..a2c483c 100644 --- a/src/modest-conf.h +++ b/src/modest-conf.h @@ -196,19 +196,19 @@ gboolean modest_conf_set_bool (ModestConf* self, const gchar* key, gboole /** - * modest_conf_get_list: + * modest_conf_set_list: * @self: a ModestConf instance * @key: the key of the value to retrieve + * @val: the list with the values to set * @list_type: the type of the elements of the list * @err: a GError ptr, or NULL to ignore. * - * get a list of values from the configuration system - * - * Returns: a list with the values for the key, or NULL in case of error or - * if the list is empty; @err gives details in case of error + * set a list of values in the configuration system + * @err gives details in case of error */ -GSList * modest_conf_get_list (ModestConf* self, const gchar* key, - ModestConfValueType list_type, GError **err); +void modest_conf_set_list (ModestConf* self, const gchar* key, + GSList *val, ModestConfValueType list_type, + GError **err); /**