on_btn_clean_clicked (GtkButton *button,
gpointer user_data)
{
- gdaex_query_editor_clean_choices ((GdaExQueryEditor *)user_data);
+ gdaex_query_editor_clean_choices (qe);
}
static void
GtkWidget *dialog;
doc = xmlNewDoc ("1.0");
- node = gdaex_query_editor_get_sql_as_xml ((GdaExQueryEditor *)user_data);
+ node = gdaex_query_editor_get_sql_as_xml (qe);
xmlDocSetRootElement (doc, node);
dialog = gtk_file_chooser_dialog_new ("Save xml to...",
node = xmlDocGetRootElement (doc);
if (node != NULL)
{
- gdaex_query_editor_load_choices_from_xml ((GdaExQueryEditor *)user_data, node, TRUE);
+ gdaex_query_editor_load_choices_from_xml (qe, node, TRUE);
}
}
g_free (filename);
gint size;
/* SQL */
- sql = (gchar *)gdaex_query_editor_get_sql ((GdaExQueryEditor *)user_data);
+ sql = (gchar *)gdaex_query_editor_get_sql (qe);
sql = g_strjoinv ("%%", g_strsplit (sql, "%", -1));
GtkWidget *dialog = gtk_message_dialog_new (GTK_WINDOW (w),
GTK_DIALOG_DESTROY_WITH_PARENT,
gtk_widget_destroy (dialog);
/* SQL SELECT */
- sql = (gchar *)gdaex_query_editor_get_sql_select ((GdaExQueryEditor *)user_data);
+ sql = (gchar *)gdaex_query_editor_get_sql_select (qe);
sql = g_strjoinv ("%%", g_strsplit (sql, "%", -1));
dialog = gtk_message_dialog_new (GTK_WINDOW (w),
GTK_DIALOG_DESTROY_WITH_PARENT,
g_free (sql);
/* SQL FROM */
- sql = (gchar *)gdaex_query_editor_get_sql_from ((GdaExQueryEditor *)user_data);
+ sql = (gchar *)gdaex_query_editor_get_sql_from (qe);
sql = g_strjoinv ("%%", g_strsplit (sql, "%", -1));
dialog = gtk_message_dialog_new (GTK_WINDOW (w),
GTK_DIALOG_DESTROY_WITH_PARENT,
g_free (sql);
/* SQL WHERE */
- sql = (gchar *)gdaex_query_editor_get_sql_where ((GdaExQueryEditor *)user_data);
+ sql = (gchar *)gdaex_query_editor_get_sql_where (qe);
sql = g_strjoinv ("%%", g_strsplit (sql, "%", -1));
dialog = gtk_message_dialog_new (GTK_WINDOW (w),
GTK_DIALOG_DESTROY_WITH_PARENT,
g_free (sql);
/* SQL ORDER */
- sql = (gchar *)gdaex_query_editor_get_sql_order ((GdaExQueryEditor *)user_data);
+ sql = (gchar *)gdaex_query_editor_get_sql_order (qe);
sql = g_strjoinv ("%%", g_strsplit (sql, "%", -1));
dialog = gtk_message_dialog_new (GTK_WINDOW (w),
GTK_DIALOG_DESTROY_WITH_PARENT,
/* XML */
doc = xmlNewDoc ("1.0");
- node = gdaex_query_editor_get_sql_as_xml ((GdaExQueryEditor *)user_data);
+ node = gdaex_query_editor_get_sql_as_xml (qe);
xmlDocSetRootElement (doc, node);
xmlDocDumpMemory (doc, &buf, &size);
buf = g_strjoinv ("%%", g_strsplit (buf, "%", -1));