X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Ft-test-independent-samples-dialog.c;h=5d77ce43031ea7e46b37c3f0de57e9f9a22e67eb;hb=66153a44d861ccddf6a176ec5a94ffb959232ad6;hp=392867adbb606acd5c62abad6ce6a58286807f13;hpb=4398d3a1a881c6cafaeb0cbd11f56bd51d904c51;p=pspp-builds.git diff --git a/src/ui/gui/t-test-independent-samples-dialog.c b/src/ui/gui/t-test-independent-samples-dialog.c index 392867ad..5d77ce43 100644 --- a/src/ui/gui/t-test-independent-samples-dialog.c +++ b/src/ui/gui/t-test-independent-samples-dialog.c @@ -1,5 +1,5 @@ /* PSPPIRE - a graphical user interface for PSPP. - Copyright (C) 2007 Free Software Foundation + Copyright (C) 2007, 2009 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 @@ -21,7 +21,7 @@ #include "t-test-independent-samples-dialog.h" #include "psppire-dict.h" #include "psppire-var-store.h" -#include "helper.h" +#include "executor.h" #include "psppire-data-window.h" #include "psppire-dialog.h" #include "dialog-common.h" @@ -117,8 +117,8 @@ tt_groups_dialog_create (GtkBuilder *xml, GtkWindow *parent) gtk_window_set_transient_for (GTK_WINDOW (grps->dialog), parent); - grps->val[0] = strdup (""); - grps->val[1] = strdup (""); + grps->val[0] = xstrdup (""); + grps->val[1] = xstrdup (""); return grps; } @@ -340,10 +340,10 @@ run_define_groups (struct tt_indep_samples_dialog *ttd) grps->group_defn = GROUPS_VALUES; grps->val[0] = - strdup (gtk_entry_get_text (GTK_ENTRY (grps->grp_entry[0]))); + xstrdup (gtk_entry_get_text (GTK_ENTRY (grps->grp_entry[0]))); grps->val[1] = - strdup (gtk_entry_get_text (GTK_ENTRY (grps->grp_entry[1]))); + xstrdup (gtk_entry_get_text (GTK_ENTRY (grps->grp_entry[1]))); } else { @@ -352,7 +352,7 @@ run_define_groups (struct tt_indep_samples_dialog *ttd) grps->val[1] = NULL; grps->val[0] = - strdup (gtk_entry_get_text (GTK_ENTRY (grps->cut_point_entry))); + xstrdup (gtk_entry_get_text (GTK_ENTRY (grps->cut_point_entry))); } psppire_dialog_notify_change (PSPPIRE_DIALOG (ttd->dialog)); @@ -416,7 +416,7 @@ t_test_independent_samples_dialog (GObject *o, gpointer data) tt_d.dialog = get_widget_assert (xml, "t-test-independent-samples-dialog"); tt_d.xml = xml; - tt_d.dict = vs->dict; + g_object_get (vs, "dictionary", &tt_d.dict, NULL); tt_d.define_groups_button = get_widget_assert (xml, "define-groups-button"); tt_d.groups_entry = get_widget_assert (xml, "indep-samples-t-test-entry"); @@ -426,11 +426,9 @@ t_test_independent_samples_dialog (GObject *o, gpointer data) gtk_window_set_transient_for (GTK_WINDOW (tt_d.dialog), GTK_WINDOW (de)); - attach_dictionary_to_treeview (GTK_TREE_VIEW (dict_view), - vs->dict, - GTK_SELECTION_MULTIPLE, NULL); + g_object_set (dict_view, "dictionary", tt_d.dict, NULL); - set_dest_model (GTK_TREE_VIEW (test_variables_treeview), vs->dict); + set_dest_model (GTK_TREE_VIEW (test_variables_treeview), tt_d.dict); psppire_selector_set_subjects (PSPPIRE_SELECTOR (selector1),