X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-dialog-action-means.c;h=6610f595563a561c077506d6a0c2beb3b503055e;hb=fc6620099bbc53762095569d5356b67a81a85402;hp=9b20560a05c100e036b24660ea2653bd04bc4b2e;hpb=d6cbbc8d634fa91f050661355139a4e4697e99ab;p=pspp diff --git a/src/ui/gui/psppire-dialog-action-means.c b/src/ui/gui/psppire-dialog-action-means.c index 9b20560a05..6610f59556 100644 --- a/src/ui/gui/psppire-dialog-action-means.c +++ b/src/ui/gui/psppire-dialog-action-means.c @@ -97,18 +97,24 @@ psppire_dialog_action_means_activate (GtkAction *a) PsppireDialogAction *pda = PSPPIRE_DIALOG_ACTION (a); PsppireDialogActionMeans *act = PSPPIRE_DIALOG_ACTION_MEANS (a); - GtkBuilder *xml = builder_new ("means.ui"); + GHashTable *thing = psppire_dialog_action_get_pointer (pda); + GtkBuilder *xml = g_hash_table_lookup (thing, a); + if (!xml) + { + xml = builder_new ("means.ui"); + g_hash_table_insert (thing, a, xml); + } - GtkWidget *vb = get_widget_assert (xml, "alignment3"); - GtkWidget *selector = get_widget_assert (xml, "layer-selector"); + GtkWidget *vb = get_widget_assert (xml, "alignment3"); + GtkWidget *selector = get_widget_assert (xml, "layer-selector"); act->layer = psppire_means_layer_new (); gtk_container_add (GTK_CONTAINER (vb), act->layer); gtk_widget_show (act->layer); - pda->dialog = get_widget_assert (xml, "means-dialog"); - pda->source = get_widget_assert (xml, "all-variables"); - act->variables = get_widget_assert (xml, "stat-variables"); + pda->dialog = get_widget_assert (xml, "means-dialog"); + pda->source = get_widget_assert (xml, "all-variables"); + act->variables = get_widget_assert (xml, "stat-variables"); g_object_set (pda->source, "predicate", var_is_numeric, @@ -118,13 +124,10 @@ psppire_dialog_action_means_activate (GtkAction *a) "dest-widget", act->layer, NULL); - psppire_dialog_action_set_valid_predicate (pda, (void *) dialog_state_valid); psppire_dialog_action_set_refresh (pda, dialog_refresh); PSPPIRE_DIALOG_ACTION_CLASS (psppire_dialog_action_means_parent_class)->activate (pda); - - g_object_unref (xml); } static void