}
}
+void
+gdaex_query_editor_load_tables_from_file (GdaExQueryEditor *qe,
+ const gchar *filename,
+ gboolean clean)
+{
+ xmlDoc *xdoc;
+ xmlNode *xroot;
+
+ xdoc = xmlParseFile (filename);
+ if (xdoc != NULL)
+ {
+ xroot = xmlDocGetRootElement (xdoc);
+ if (xroot != NULL)
+ {
+ gdaex_query_editor_load_tables_from_xml (qe, xroot, TRUE);
+ }
+ }
+}
+
void
gdaex_query_editor_clean_choices (GdaExQueryEditor *qe)
{
void gdaex_query_editor_load_tables_from_xml (GdaExQueryEditor *qe,
xmlNode *root,
gboolean clean);
+void gdaex_query_editor_load_tables_from_file (GdaExQueryEditor *qe,
+ const gchar *filename,
+ gboolean clean);
void gdaex_query_editor_clean_choices (GdaExQueryEditor *qe);
if (xmlfile != NULL)
{
- xmlDoc *xdoc;
- xmlNode *xroot;
-
- xdoc = xmlParseFile (xmlfile);
- 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_file (qe, xmlfile, TRUE);
}
else
{