X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fvar-type-dialog.c;h=f196e554f9d0c224ee6bfc5a268814e566472050;hb=00ffc59ef40cb0bc7d1db6f22fd100ef882a5229;hp=5ba028d49e5887e6a3f95621e18c88789fcb9211;hpb=871d078bcc3029284551e2400a58bd5ece2064f3;p=pspp-builds.git diff --git a/src/ui/gui/var-type-dialog.c b/src/ui/gui/var-type-dialog.c index 5ba028d4..f196e554 100644 --- a/src/ui/gui/var-type-dialog.c +++ b/src/ui/gui/var-type-dialog.c @@ -262,12 +262,12 @@ preview_custom (GtkWidget *w, gpointer data) union value v; v.f = 1234.56; - sample_text = value_to_text (v, NULL, dialog->fmt_l); + sample_text = value_to_text (v, dialog->vs->dictionary, dialog->fmt_l); gtk_label_set_text (GTK_LABEL (dialog->label_psample), sample_text); g_free (sample_text); v.f = -v.f; - sample_text = value_to_text (v, NULL, dialog->fmt_l); + sample_text = value_to_text (v, dialog->vs->dictionary, dialog->fmt_l); gtk_label_set_text (GTK_LABEL (dialog->label_nsample), sample_text); g_free (sample_text); } @@ -315,21 +315,20 @@ set_format_type_from_treeview (GtkTreeView *treeview, gpointer data) dialog->fmt_l = custom_format; dialog->fmt_l.type = *(int*) g_value_get_pointer (&the_value); - } - - /* Create the structure */ struct var_type_dialog * -var_type_dialog_create (GtkWindow *toplevel) +var_type_dialog_create (GtkWindow *toplevel, PsppireVarStore *vs) { gint i; struct var_type_dialog *dialog = g_malloc (sizeof (struct var_type_dialog)); GtkBuilder *xml = builder_new ("var-sheet-dialogs.ui"); + dialog->vs = vs; + dialog->window = get_widget_assert (xml,"var_type_dialog"); dialog->active_button = -1;