From 265776d1e0334209a9b3fb6d9816c3564dd2b2a2 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Thu, 24 May 2012 15:46:27 +0200 Subject: [PATCH] GdaExQueryEditor::load_tables_from_file doesn't take into account "clean" parameter. (closes #156). --- src/queryeditor.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/queryeditor.c b/src/queryeditor.c index 8e321d9..586fc05 100644 --- a/src/queryeditor.c +++ b/src/queryeditor.c @@ -1400,13 +1400,15 @@ gdaex_query_editor_load_tables_from_file (GdaExQueryEditor *qe, xmlDoc *xdoc; xmlNode *xroot; + g_return_if_fail (filename != NULL); + xdoc = xmlParseFile (filename); if (xdoc != NULL) { xroot = xmlDocGetRootElement (xdoc); if (xroot != NULL) { - gdaex_query_editor_load_tables_from_xml (qe, xroot, TRUE); + gdaex_query_editor_load_tables_from_xml (qe, xroot, clean); } } } -- 2.49.0