X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fweight-cases-dialog.c;h=03aea92def8045748c846bfd75626bb01e50d362;hb=a9a69251edd625a50f271af5d64c157533b5fe48;hp=11b528ba76d1ebf2f3f06cea96cabad8d8eac7f9;hpb=14aac9fe7a7efbb6c9bded2ed5969a643cb76645;p=pspp-builds.git diff --git a/src/ui/gui/weight-cases-dialog.c b/src/ui/gui/weight-cases-dialog.c index 11b528ba..03aea92d 100644 --- a/src/ui/gui/weight-cases-dialog.c +++ b/src/ui/gui/weight-cases-dialog.c @@ -120,6 +120,7 @@ weight_cases_dialog (GObject *o, gpointer data) PsppireVarStore *vs = NULL; g_object_get (de->data_editor, "var-store", &vs, NULL); + g_object_get (vs, "dictionary", &wcd.dict, NULL); gtk_window_set_transient_for (GTK_WINDOW (dialog), GTK_WINDOW (de)); @@ -130,21 +131,18 @@ weight_cases_dialog (GObject *o, gpointer data) g_signal_connect (selector, "de-selected", G_CALLBACK (on_deselect), radiobutton1); - g_object_set (source, "dictionary", vs->dict, + + g_object_set (source, "model", wcd.dict, "selection-mode", GTK_SELECTION_SINGLE, "predicate", var_is_numeric, NULL); psppire_selector_set_subjects (PSPPIRE_SELECTOR (selector), - source, - entry, insert_source_row_into_entry, is_currently_in_entry, NULL ); - - wcd.dict = vs->dict; wcd.entry = GTK_ENTRY (entry); wcd.status = GTK_LABEL (status); wcd.off = GTK_TOGGLE_BUTTON (radiobutton1);