GSettings: warn if use the 'memory' backend

but only if it was not explicitly selected.
This commit is contained in:
Ryan Lortie 2010-07-07 10:56:57 -04:00
parent 6ae4d31e75
commit 746721293b

View File

@ -1025,6 +1025,10 @@ g_settings_backend_get_default (void)
g_error ("No GSettingsBackend implementations exist.");
extension = extensions->data;
if (strcmp (g_io_extension_get_name (extension), "memory") == 0)
g_message ("Using the 'memory' GSettings backend. Your settings "
"will not be saved or shared with other applications.");
}
extension_type = g_io_extension_get_type (extension);