~compiz-team/compiz/compiz.gsettings_conformance_test

« back to all changes in this revision

Viewing changes to compizconfig/gsettings/gsettings_backend_shared/gsettings_util.c

Merged compiz.split_gsettings_rw_funcs into compiz.gsettings_conformance_test.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
 
7
7
INTERFACE_TYPE (CCSGSettingsBackendInterface);
8
8
 
 
9
int voidcmp0 (const void *v1, const void *v2)
 
10
{
 
11
    return g_strcmp0 ((const char *) v1, (const char *) v2);
 
12
}
 
13
 
9
14
GList *
10
15
variantTypeToPossibleSettingType (const gchar *vt)
11
16
{
1020
1025
    (*(GET_INTERFACE (CCSGSettingsBackendInterface, backend))->gsettingsBackendUnregisterGConfClient) (backend);
1021
1026
}
1022
1027
 
 
1028
const char *
 
1029
ccsGSettingsBackendGetCurrentProfile (CCSBackend *backend)
 
1030
{
 
1031
    return (*(GET_INTERFACE (CCSGSettingsBackendInterface, backend))->gsettingsBackendGetCurrentProfile) (backend);
 
1032
}
 
1033
 
1023
1034
GVariant *
1024
1035
ccsGSettingsBackendGetExistingProfiles (CCSBackend *backend)
1025
1036
{
1049
1060
{
1050
1061
    (*(GET_INTERFACE (CCSGSettingsBackendInterface, backend))->gsettingsBackendClearPluginsWithSetKeys) (backend, profile);
1051
1062
}
 
1063
 
 
1064
void
 
1065
ccsGSettingsBackendUnsetAllChangedPluginKeysInProfile (CCSBackend *backend,
 
1066
                                                       CCSContext *context,
 
1067
                                                       GVariant   *pluginKeys,
 
1068
                                                       const char *profile)
 
1069
{
 
1070
    (*(GET_INTERFACE (CCSGSettingsBackendInterface, backend))->gsettingsBackendUnsetAllChangedPluginKeysInProfile) (backend, context, pluginKeys, profile);
 
1071
}