X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Foneway-anova-dialog.c;h=be281f7c546adb838306771c68ea50c1a7bfa86f;hb=0bd0098aec2ee31d9460c8d4c1263d0b5ccc4324;hp=b3cff6be7143d7d9da574de56e1e76c8328795f5;hpb=017ba229ee4570635c3cb07fa7189796fce15969;p=pspp-builds.git diff --git a/src/ui/gui/oneway-anova-dialog.c b/src/ui/gui/oneway-anova-dialog.c index b3cff6be..be281f7c 100644 --- a/src/ui/gui/oneway-anova-dialog.c +++ b/src/ui/gui/oneway-anova-dialog.c @@ -184,13 +184,15 @@ oneway_anova_dialog (GObject *o, gpointer data) psppire_selector_set_subjects (PSPPIRE_SELECTOR (selector1), dict_view, ow.vars_treeview, insert_source_row_into_tree_view, + NULL, NULL); psppire_selector_set_subjects (PSPPIRE_SELECTOR (selector2), dict_view, ow.factor_entry, insert_source_row_into_entry, - is_currently_in_entry); + is_currently_in_entry, + NULL); @@ -271,7 +273,7 @@ static gchar * generate_syntax (const struct oneway_anova_dialog *ow) GString *str = g_string_new ("ONEWAY /VARIABLES="); - append_variable_names (str, ow->dict, GTK_TREE_VIEW (ow->vars_treeview)); + append_variable_names (str, ow->dict, GTK_TREE_VIEW (ow->vars_treeview), 0); g_string_append (str, " BY ");