mirror of
https://gitlab.gnome.org/GNOME/calls.git
synced 2024-11-17 07:46:03 +00:00
settings: Add docstring for autoload-plugins setter and getter
This commit is contained in:
parent
a63023e315
commit
dc809e54e5
1 changed files with 14 additions and 2 deletions
|
@ -253,7 +253,13 @@ calls_settings_set_country_code (CallsSettings *self,
|
|||
g_settings_set_string (G_SETTINGS (self->settings), "country-code", country_code);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* calls_settings_get_autoload_plugins:
|
||||
* @self: A #CallsSettings
|
||||
*
|
||||
* Returns: (array zero-terminated=1) (transfer full): List of plugins that are automatically loaded on startup.
|
||||
* Free with g_strfreev() when done.
|
||||
*/
|
||||
char **
|
||||
calls_settings_get_autoload_plugins (CallsSettings *self)
|
||||
{
|
||||
|
@ -262,7 +268,13 @@ calls_settings_get_autoload_plugins (CallsSettings *self)
|
|||
return g_settings_get_strv (G_SETTINGS (self->settings), "autoload-plugins");
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* calls_settings_set_autoload_plugins:
|
||||
* @self: A #CallsSettings
|
||||
* @plugins: (nullable) (array zero-terminated=1): The plugins to autoload
|
||||
*
|
||||
* Sets the plugins that should be loaded on startup.
|
||||
*/
|
||||
void
|
||||
calls_settings_set_autoload_plugins (CallsSettings *self,
|
||||
const char * const *plugins)
|
||||
|
|
Loading…
Reference in a new issue