X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fdialog-common.c;h=f167034b12a760f2a27f84fa202dbf195badf77c;hb=96994a54e60e9c95b8bba54c2281acf7059b1203;hp=cdd6ac667a6e9ade846ce51f2009031a73d0affb;hpb=369c24f1d085a41ec274ebae5fc198fcee567653;p=pspp diff --git a/src/ui/gui/dialog-common.c b/src/ui/gui/dialog-common.c index cdd6ac667a..f167034b12 100644 --- a/src/ui/gui/dialog-common.c +++ b/src/ui/gui/dialog-common.c @@ -33,7 +33,7 @@ static GtkTreePath * get_base_tree_path (GtkTreeModel *m, GtkTreePath *op) { GtkTreePath *p = gtk_tree_path_copy (op); - while ( ! PSPPIRE_IS_DICT (m)) + while (! PSPPIRE_IS_DICT (m)) { GtkTreePath *oldp = p; @@ -115,7 +115,7 @@ homogeneous_types (GtkWidget *source, GtkWidget *dest) g_list_foreach (list, (GFunc) gtk_tree_path_free, NULL); g_list_free (list); - if ( retval == FALSE ) + if (retval == FALSE) return FALSE; /* now deal with the dest widget */ @@ -128,7 +128,7 @@ homogeneous_types (GtkWidget *source, GtkWidget *dest) const struct variable *v; gtk_tree_model_get (model, &iter, 0, &v, -1); - if ( have_type && var_get_type (v) != type ) + if (have_type && var_get_type (v) != type) { retval = FALSE; break; @@ -172,7 +172,7 @@ numeric_only (GtkWidget *source, GtkWidget *dest) const struct variable *v = psppire_dict_get_variable (dict, idx[0]); gtk_tree_path_free (p); - if ( var_is_alpha (v)) + if (var_is_alpha (v)) { retval = FALSE; break;