X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fvariable-info-dialog.c;h=3692a0d24834b5bdb94bb0d8311d9e093fd38130;hb=d6028c82867eb92ccd1a3a7f1473316cbe462271;hp=cbc4d5cadb97eedc10b929e4532da9e820d7df3d;hpb=7c08a6e1009cf60847e770a77a73c650e9326379;p=pspp diff --git a/src/ui/gui/variable-info-dialog.c b/src/ui/gui/variable-info-dialog.c index cbc4d5cadb..3692a0d248 100644 --- a/src/ui/gui/variable-info-dialog.c +++ b/src/ui/gui/variable-info-dialog.c @@ -1,5 +1,5 @@ /* PSPPIRE - a graphical user interface for PSPP. - Copyright (C) 2007, 2009 Free Software Foundation + Copyright (C) 2007, 2009, 2010, 2011 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 @@ -17,19 +17,20 @@ #include #include -#include "var-display.h" #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 @@ -54,7 +55,7 @@ label_to_string (const struct variable *var) static void populate_text (PsppireDictView *treeview, gpointer data) { - gchar *text = 0; + gchar *text = NULL; GString *gstring; PsppireDict *dict; @@ -88,11 +89,8 @@ populate_text (PsppireDictView *treeview, gpointer data) text); g_free (text); - text = measure_to_string (var, NULL); g_string_append_printf (gstring, _("Measurement Level: %s\n"), - text); - g_free (text); - + measure_to_string (var, NULL)); /* Value Labels */ @@ -114,7 +112,8 @@ populate_text (PsppireDictView *treeview, gpointer data) gchar *const vstr = value_to_text (vl->value, dict, *var_get_print_format (var)); - g_string_append_printf (gstring, _("%s %s\n"), vstr, val_lab_get_label (vl)); + g_string_append_printf (gstring, _("%s %s\n"), + vstr, val_lab_get_escaped_label (vl)); g_free (vstr); } @@ -145,10 +144,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 +196,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); }