X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Fui%2Fgui%2Fexamine-dialog.c;h=857394fb3dd6ef005c058cb7d4e0d3d988e8a616;hb=7a48928f76e0f4599be8f65b1b3bafd03d73a628;hp=ab5514cf79f36ab34548bab4ed722bbbdf10b590;hpb=319711ff80e76a730ec26c86d67c0107143d8747;p=pspp diff --git a/src/ui/gui/examine-dialog.c b/src/ui/gui/examine-dialog.c index ab5514cf79..857394fb3d 100644 --- a/src/ui/gui/examine-dialog.c +++ b/src/ui/gui/examine-dialog.c @@ -1,5 +1,5 @@ /* PSPPIRE - a graphical user interface for PSPP. - Copyright (C) 2007, 2008, 2009 Free Software Foundation + Copyright (C) 2007, 2008, 2009, 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 @@ -22,14 +22,14 @@ #include #include -#include #include #include #include -#include +#include #include #include #include "executor.h" +#include "helper.h" #include "gettext.h" #define _(msgid) gettext (msgid) @@ -234,10 +234,9 @@ run_opts_dialog (struct examine_dialog *ed) /* Pops up the Examine dialog box */ void -examine_dialog (gpointer data) +examine_dialog (PsppireDataWindow *de) { gint response; - PsppireDataWindow *de = PSPPIRE_DATA_WINDOW (data); struct examine_dialog ex_d; @@ -302,22 +301,10 @@ examine_dialog (gpointer data) switch (response) { case GTK_RESPONSE_OK: - { - gchar *syntax = generate_syntax (&ex_d); - - struct getl_interface *sss = create_syntax_string_source (syntax); - - execute_syntax (sss); - - g_free (syntax); - } + g_free (execute_syntax_string (de, generate_syntax (&ex_d))); break; case PSPPIRE_RESPONSE_PASTE: - { - gchar *syntax = generate_syntax (&ex_d); - paste_syntax_in_new_window (syntax); - g_free (syntax); - } + g_free (paste_syntax_to_window (generate_syntax (&ex_d))); break; default: break;