X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Fui%2Fgui%2Fwidgets.c;h=ec9be3351611353a66e7280150c960a5d8abdfdd;hb=691a034d7f2139076fa012739dffd40ef5db4a9b;hp=b9a7a1ec3edf2da7741aaa292f9182e684d40c95;hpb=ff50bab74c735b9e48b851080edcd1d466a83371;p=pspp diff --git a/src/ui/gui/widgets.c b/src/ui/gui/widgets.c index b9a7a1ec3e..ec9be33516 100644 --- a/src/ui/gui/widgets.c +++ b/src/ui/gui/widgets.c @@ -1,14 +1,31 @@ +/* +PSPP - a program for statistical analysis. +Copyright (C) 2017 Free Software Foundation, Inc. + +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 +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . +*/ + #include -#include +#include #include "widgets.h" #include "psppire-dialog.h" #include "psppire-selector.h" -#include "psppire-vbuttonbox.h" -#include "psppire-hbuttonbox.h" +#include "psppire-buttonbox.h" #include "psppire-keypad.h" #include "psppire-acr.h" #include "psppire-dictview.h" @@ -34,6 +51,7 @@ #include "psppire-dialog-action-histogram.h" #include "psppire-dialog-action-indep-samps.h" #include "psppire-dialog-action-k-related.h" +#include "psppire-dialog-action-k-independent.h" #include "psppire-dialog-action-1sks.h" #include "psppire-dialog-action-kmeans.h" #include "psppire-dialog-action-logistic.h" @@ -85,6 +103,7 @@ static const get_type_func dialog_action_types[]= psppire_dialog_action_histogram_get_type, psppire_dialog_action_logistic_get_type, psppire_dialog_action_kmeans_get_type, + psppire_dialog_action_k_independent_get_type, psppire_dialog_action_k_related_get_type, psppire_dialog_action_means_get_type, psppire_dialog_action_oneway_get_type, @@ -123,7 +142,7 @@ preregister_actions (void) /* Any custom widgets which are to be used in GtkBuilder ui files - need to be preregistered, otherwise GtkBuilder refuses to + need to be preregistered, otherwise GtkBuilder refuses to acknowledge their existence. */ void preregister_widgets (void) @@ -131,8 +150,7 @@ preregister_widgets (void) psppire_val_chooser_get_type (); psppire_dialog_get_type (); psppire_selector_get_type (); - psppire_vbutton_box_get_type (); - psppire_hbutton_box_get_type (); + psppire_buttonbox_get_type (); psppire_keypad_get_type (); psppire_acr_get_type (); psppire_dict_view_get_type ();