X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fvariable-info-dialog.c;h=16a5f462945e2c957ee7a783f1c93f58723b3143;hb=52c400a0ac67e4a43c5cae5a0d40e1452326240c;hp=6d494495a43698a50e4a8ea28572cb59e7ed803b;hpb=871d078bcc3029284551e2400a58bd5ece2064f3;p=pspp-builds.git diff --git a/src/ui/gui/variable-info-dialog.c b/src/ui/gui/variable-info-dialog.c index 6d494495..16a5f462 100644 --- a/src/ui/gui/variable-info-dialog.c +++ b/src/ui/gui/variable-info-dialog.c @@ -17,19 +17,21 @@ #include #include -#include "var-display.h" #include #include #include +#include +#include + +#include "variable-info-dialog.h" +#include "var-display.h" + #include "psppire-data-window.h" #include "psppire-dialog.h" -#include "psppire-var-store.h" #include "psppire-dictview.h" +#include "psppire-var-store.h" #include "helper.h" -#include -#include -#include "helper.h" #include @@ -143,10 +145,8 @@ static gchar * generate_syntax (PsppireDictView *treeview); void -variable_info_dialog (GObject *o, gpointer data) +variable_info_dialog (PsppireDataWindow *de) { - PsppireDataWindow *de = PSPPIRE_DATA_WINDOW (data); - gint response ; GtkBuilder *xml = builder_new ("variable-info.ui"); @@ -197,7 +197,7 @@ variable_info_dialog (GObject *o, gpointer data) case PSPPIRE_RESPONSE_PASTE: { gchar *syntax = generate_syntax (PSPPIRE_DICT_VIEW (treeview)); - paste_syntax_in_new_window (syntax); + paste_syntax_to_window (syntax); g_free (syntax); }