From: Andrea Zagli Date: Thu, 24 May 2012 13:46:27 +0000 (+0200) Subject: GdaExQueryEditor::load_tables_from_file doesn't take into X-Git-Tag: 0.5.0~6 X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=265776d1e0334209a9b3fb6d9816c3564dd2b2a2;p=libgdaex GdaExQueryEditor::load_tables_from_file doesn't take into account "clean" parameter. (closes #156). --- 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); } } }