X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fwidgets.c;h=ed8328a5a57bd337600a8ab5ef85d060f8fa4fc2;hb=698f289d1ecf1620aa5429599f2e76db23cff452;hp=979224fe4152331227d6597cf3259e08fb996cb5;hpb=c3e2ab6b50eb3b3c7e0852f2a4e2122f695714ff;p=pspp diff --git a/src/ui/gui/widgets.c b/src/ui/gui/widgets.c index 979224fe41..ed8328a5a5 100644 --- a/src/ui/gui/widgets.c +++ b/src/ui/gui/widgets.c @@ -10,6 +10,19 @@ #include "psppire-keypad.h" #include "psppire-acr.h" #include "psppire-dictview.h" +#include "psppire-var-view.h" +#include "psppire-val-chooser.h" + +#include "psppire-dialog-action-correlation.h" +#include "psppire-dialog-action-descriptives.h" +#include "psppire-dialog-action-examine.h" +#include "psppire-dialog-action-kmeans.h" +#include "psppire-dialog-action-means.h" +#include "psppire-means-layer.h" +#include "psppire-dialog-action-reliability.h" +#include "psppire-dialog-action-roc.h" +#include "psppire-dialog-action-sort.h" +#include "psppire-dialog-action-var-info.h" /* Any custom widgets which are to be used in GtkBuilder ui files @@ -18,6 +31,7 @@ void preregister_widgets (void) { + psppire_val_chooser_get_type (); psppire_dialog_get_type (); psppire_selector_get_type (); psppire_vbutton_box_get_type (); @@ -25,4 +39,16 @@ preregister_widgets (void) psppire_keypad_get_type (); psppire_acr_get_type (); psppire_dict_view_get_type (); + psppire_var_view_get_type (); + + psppire_dialog_action_correlation_get_type (); + psppire_dialog_action_descriptives_get_type (); + psppire_dialog_action_examine_get_type (); + psppire_dialog_action_kmeans_get_type (); + psppire_dialog_action_means_get_type (); + psppire_means_layer_get_type (); + psppire_dialog_action_var_info_get_type (); + psppire_dialog_action_reliability_get_type (); + psppire_dialog_action_roc_get_type (); + psppire_dialog_action_sort_get_type (); }