X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=src%2Fmodest-conf.h;h=2edd05b2723ba65fc5d1574210dd1bc26f81d6c5;hb=26bbed080f7d04a8434a8b348fb4136aba4c6f23;hp=6581609393f4f047f0f1469ba374fc5f47f7a415;hpb=9f151df80211388fe05329a6189c7f1f087274ff;p=modest diff --git a/src/modest-conf.h b/src/modest-conf.h index 6581609..2edd05b 100644 --- a/src/modest-conf.h +++ b/src/modest-conf.h @@ -70,9 +70,9 @@ struct _ModestConfClass { /** * modest_conf_get_type: * - * get the GType for ModestConf + * get the #GType for #ModestConf * - * Returns: the GType + * Returns: the #GType */ GType modest_conf_get_type (void) G_GNUC_CONST; @@ -80,9 +80,9 @@ GType modest_conf_get_type (void) G_GNUC_CONST; /** * modest_conf_new: * - * create a new modest ModestConf object. + * create a new modest #ModestConf object. * - * Returns: a new ModestConf instance, or NULL in case + * Returns: a new #ModestConf instance, or NULL in case * of any error */ ModestConf* modest_conf_new (void); @@ -144,7 +144,7 @@ gboolean modest_conf_get_bool (ModestConf* self, const gchar* key, GError * Returns: a list with the values for the key, or NULL in case of error * @err gives details in case of error */ -GSList * modest_conf_get_list (ModestConf* self, const gchar* key, +GSList* modest_conf_get_list (ModestConf* self, const gchar* key, ModestConfValueType list_type, GError **err); /** @@ -202,9 +202,11 @@ gboolean modest_conf_set_bool (ModestConf* self, const gchar* key, gboole * @err: a GError ptr, or NULL to ignore. * * set a list of values in the configuration system + * + * Returns: TRUE if succeeded or FALSE in case of error. * @err gives details in case of error */ -void modest_conf_set_list (ModestConf* self, const gchar* key, +gboolean modest_conf_set_list (ModestConf* self, const gchar* key, GSList *val, ModestConfValueType list_type, GError **err);