X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Ffrequencies-dialog.c;h=32871e0a8b9fd5cef0535169fe07bfd2a6def52e;hb=ec9ef1ece2392967ddf17980089bc4692931d6c3;hp=2bbb5546cdd9bc9dec38664bdab5d4df9f7fc146;hpb=e4ef4d0f708651807d91bd92d7ab92c1b5c6d675;p=pspp diff --git a/src/ui/gui/frequencies-dialog.c b/src/ui/gui/frequencies-dialog.c index 2bbb5546cd..32871e0a8b 100644 --- a/src/ui/gui/frequencies-dialog.c +++ b/src/ui/gui/frequencies-dialog.c @@ -1,5 +1,5 @@ /* PSPPIRE - a graphical user interface for PSPP. - Copyright (C) 2007, 2010 Free Software Foundation + Copyright (C) 2007, 2010, 2011, 2012 Free Software Foundation This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -23,14 +23,13 @@ #include #include -#include #include #include #include -#include +#include #include -#include #include "executor.h" +#include "helper.h" #include "gettext.h" #define _(msgid) gettext (msgid) @@ -468,10 +467,6 @@ frequencies_dialog (PsppireDataWindow *de) GtkWidget *charts_button = get_widget_assert (xml, "charts-button"); GtkWidget *stats_treeview = get_widget_assert (xml, "stats-treeview"); - PsppireVarStore *vs = NULL; - - g_object_get (de->data_editor, "var-store", &vs, NULL); - put_checkbox_items_in_treeview (GTK_TREE_VIEW(stats_treeview), B_FS_DEFAULT, N_FREQUENCY_STATS, @@ -481,7 +476,7 @@ frequencies_dialog (PsppireDataWindow *de) gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (de)); - g_object_get (vs, "dictionary", &fd.dict, NULL); + g_object_get (de->data_editor, "dictionary", &fd.dict, NULL); g_object_set (source, "model", fd.dict, NULL); fd.stat_vars = GTK_TREE_VIEW (dest); @@ -570,21 +565,10 @@ frequencies_dialog (PsppireDataWindow *de) switch (response) { case GTK_RESPONSE_OK: - { - gchar *syntax = generate_syntax (&fd); - - struct getl_interface *sss = create_syntax_string_source (syntax); - execute_syntax (sss); - - g_free (syntax); - } + g_free (execute_syntax_string (de, generate_syntax (&fd))); break; case PSPPIRE_RESPONSE_PASTE: - { - gchar *syntax = generate_syntax (&fd); - paste_syntax_to_window (syntax); - g_free (syntax); - } + g_free (paste_syntax_to_window (generate_syntax (&fd))); break; default: break;