]> saetta.ns0.it Git - libgdaex/commitdiff
GdaExQueryEditor::load_tables_from_file doesn't take into
authorAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Thu, 24 May 2012 13:46:27 +0000 (15:46 +0200)
committerAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Thu, 24 May 2012 13:46:27 +0000 (15:46 +0200)
account "clean" parameter.
(closes #156).

src/queryeditor.c

index 8e321d9a2d526f6dd9b1784e1b01738357d9ea7d..586fc056c788acf2fef6b80af02347e31046dc00 100644 (file)
@@ -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);
                                }
                }
 }