summaryrefslogtreecommitdiff
path: root/capplets/keybindings/mate-keybinding-properties.c
diff options
context:
space:
mode:
Diffstat (limited to 'capplets/keybindings/mate-keybinding-properties.c')
-rw-r--r--capplets/keybindings/mate-keybinding-properties.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/capplets/keybindings/mate-keybinding-properties.c b/capplets/keybindings/mate-keybinding-properties.c
index 0b692ad3..ab3eaa6e 100644
--- a/capplets/keybindings/mate-keybinding-properties.c
+++ b/capplets/keybindings/mate-keybinding-properties.c
@@ -432,15 +432,14 @@ typedef struct {
static gboolean key_match(GtkTreeModel* model, GtkTreePath* path, GtkTreeIter* iter, gpointer data)
{
KeyMatchData* match_data = data;
- KeyEntry* element;
+ KeyEntry* element = NULL;
+ gchar *element_schema = NULL;
+ gchar *element_path = NULL;
gtk_tree_model_get(model, iter,
KEYENTRY_COLUMN, &element,
-1);
- gchar *element_schema;
- gchar *element_path;
-
if (element && element->settings && G_IS_SETTINGS(element->settings))
{
#if GLIB_CHECK_VERSION (2, 32, 0)
@@ -450,10 +449,6 @@ static gboolean key_match(GtkTreeModel* model, GtkTreePath* path, GtkTreeIter* i
#endif
g_object_get (element->settings, "path", &element_path, NULL);
}
- else {
- element_schema = NULL;
- element_path = NULL;
- }
if (element && g_strcmp0(element->gsettings_key, match_data->key) == 0
&& g_strcmp0(element_schema, match_data->schema) == 0