X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-acr.c;h=b858df268eb904ac927576af39b47b4efc3db74b;hb=96994a54e60e9c95b8bba54c2281acf7059b1203;hp=a2ee6af55913ad63114c07a2713014da716f2a06;hpb=369c24f1d085a41ec274ebae5fc198fcee567653;p=pspp diff --git a/src/ui/gui/psppire-acr.c b/src/ui/gui/psppire-acr.c index a2ee6af559..b858df268e 100644 --- a/src/ui/gui/psppire-acr.c +++ b/src/ui/gui/psppire-acr.c @@ -135,7 +135,7 @@ on_add_button_clicked (PsppireAcr *acr) ++i) { static GValue value; - if ( ! acr->get_value (i, &value, acr->get_value_data) ) + if (! acr->get_value (i, &value, acr->get_value_data)) continue; gtk_list_store_set_value (acr->list_store, &iter, @@ -170,7 +170,7 @@ on_change_button_clicked (PsppireAcr *acr) ++i) { static GValue value; - if ( ! acr->get_value (i, &value, acr->get_value_data) ) + if (! acr->get_value (i, &value, acr->get_value_data)) continue; gtk_list_store_set_value (acr->list_store, &iter, @@ -181,7 +181,7 @@ on_change_button_clicked (PsppireAcr *acr) g_list_foreach (l, (GFunc) gtk_tree_path_free, NULL); g_list_free (l); - if ( acr->update) acr->update (acr->update_data); + if (acr->update) acr->update (acr->update_data); } @@ -238,7 +238,7 @@ on_select (GtkTreeSelection *selection, gpointer data) gtk_widget_set_sensitive (acr->change_button, row_is_selected (acr) - ); + ); }