X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fexamine-dialog.c;h=931c0461ff4ee5ec64aceeca195db395ab88683c;hb=refs%2Fbuilds%2F20101211030502%2Fpspp;hp=ac4c455c49208fd67a9fbc69cb1c4d89ca1cca29;hpb=64a18d9cb2657b541ebf39c9a064edc92101f2f3;p=pspp diff --git a/src/ui/gui/examine-dialog.c b/src/ui/gui/examine-dialog.c index ac4c455c49..931c0461ff 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 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,7 +22,6 @@ #include #include -#include #include #include #include @@ -301,22 +300,10 @@ examine_dialog (PsppireDataWindow *de) 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 (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;