Pass dict to name_to_string and label_to_string.
authorJohn Darrington <john@darrington.wattle.id.au>
Sat, 28 Mar 2009 11:46:46 +0000 (20:46 +0900)
committerJohn Darrington <john@darrington.wattle.id.au>
Sat, 28 Mar 2009 11:46:46 +0000 (20:46 +0900)
Oops, forgot to replace these NULLs.

src/ui/gui/variable-info-dialog.c

index a53d6a5cf0a09264189a98a525a79c48f70c80d0..3b3367f75c7b6dafe7309ec1e1c31f7efc27cad3 100644 (file)
@@ -70,7 +70,7 @@ populate_text (PsppireDictView *treeview, gpointer data)
   GString *gstring;
   PsppireDict *dict;
 
-  GtkTextBuffer *textbuffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW(data));
+  GtkTextBuffer *textbuffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (data));
   const struct variable *var =
     psppire_dict_view_get_selected_variable (treeview);
 
@@ -82,13 +82,13 @@ populate_text (PsppireDictView *treeview, gpointer data)
                NULL);
 
   gstring = g_string_sized_new (200);
-  text = name_to_string (var, NULL);
+  text = name_to_string (var, dict);
   g_string_assign (gstring, text);
   g_free (text);
   g_string_append (gstring, "\n");
 
 
-  text = label_to_string (var, NULL);
+  text = label_to_string (var, dict);
   g_string_append_printf (gstring, _("Label: %s\n"), text);
   g_free (text);