X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fwidgets.c;h=9f21486f70db0ff376688977b71460827a7dd78a;hb=c5526c9acb2c33a265b6be745a6d83a870ebd666;hp=a1a55d1453a3816bd1a3bdf68c7b0b833bf3bccc;hpb=7c08a6e1009cf60847e770a77a73c650e9326379;p=pspp diff --git a/src/ui/gui/widgets.c b/src/ui/gui/widgets.c index a1a55d1453..9f21486f70 100644 --- a/src/ui/gui/widgets.c +++ b/src/ui/gui/widgets.c @@ -11,6 +11,15 @@ #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-kmeans.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 @@ -19,6 +28,7 @@ void preregister_widgets (void) { + psppire_val_chooser_get_type (); psppire_dialog_get_type (); psppire_selector_get_type (); psppire_vbutton_box_get_type (); @@ -27,4 +37,12 @@ preregister_widgets (void) 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_kmeans_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 (); }