From aab17d8978552e9d893c63b346cea9272df39e2a Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Thu, 17 Dec 2015 11:08:25 +0100 Subject: [PATCH] Bugfixes: missing else in GdaExQueryEditor::on_btn_save_clicked. --- src/queryeditor.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/queryeditor.c b/src/queryeditor.c index ca18176..1bbe6a9 100644 --- a/src/queryeditor.c +++ b/src/queryeditor.c @@ -3441,7 +3441,7 @@ gdaex_query_editor_on_btn_save_clicked (GtkButton *button, val1_sql = NULL; val2_sql = NULL; - /* if it is the first condition, "link" doesn't is visibile */ + /* if it is the first condition, "link" isn't visibile */ GtkTreePath *path = gtk_tree_model_get_path (GTK_TREE_MODEL (priv->tstore_where), &iter); gint *indices = gtk_tree_path_get_indices (path); if (indices[gtk_tree_path_get_depth (path) - 1] != 0) @@ -3525,6 +3525,7 @@ gdaex_query_editor_on_btn_save_clicked (GtkButton *button, val2_sql = g_strdup (val2_sql); } } + else { where_type = 0; val1 = g_strdup (""); -- 2.49.0