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=d8493b3b0617cc447446a70b031a69079bc19002;hp=cbc4d5cadb97eedc10b929e4532da9e820d7df3d;hpb=93b5d67c0fdc08137f308f332fede32543e7bc8e;p=pspp diff --git a/src/ui/gui/variable-info-dialog.c b/src/ui/gui/variable-info-dialog.c index cbc4d5cadb..16a5f46294 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 @@ -91,8 +93,6 @@ populate_text (PsppireDictView *treeview, gpointer data) text = measure_to_string (var, NULL); g_string_append_printf (gstring, _("Measurement Level: %s\n"), text); - g_free (text); - /* Value Labels */ @@ -145,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"); @@ -199,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); }