(psppire_var_store_item_editable): Use var_is_alpha.
authorBen Pfaff <blp@gnu.org>
Sun, 3 Jun 2007 22:03:38 +0000 (22:03 +0000)
committerBen Pfaff <blp@gnu.org>
Sun, 3 Jun 2007 22:03:38 +0000 (22:03 +0000)
src/ui/gui/ChangeLog
src/ui/gui/psppire-var-store.c

index 99a50aec579a763c181ca2ce5425cc56db6687ec..82ea6d63da4c6bdca9c3e27c5cff37e2123d3b33 100644 (file)
@@ -1,3 +1,8 @@
+2007-06-03  Ben Pfaff  <blp@gnu.org>
+
+       * psppire-var-store.c (psppire_var_store_item_editable): Use
+       var_is_alpha.
+       
 2007-05-07 John Darrington <john@darrington.wattle.id.au>
 
        * psppire-dialog.c psppire-dialog.h: Added "orientation" property,
index d156e79932e0fccc1a6d86b576a60105b322a8d4..58498170ea60ea05008217358ee6c8ace5d26f97 100644 (file)
@@ -159,7 +159,7 @@ psppire_var_store_item_editable (PsppireVarStore *var_store, gint row, gint colu
   if ( !pv )
     return TRUE;
 
-  if ( VAR_STRING == var_get_type (pv) && column == COL_DECIMALS )
+  if ( var_is_alpha (pv) && column == COL_DECIMALS )
     return FALSE;
 
   write_spec = var_get_print_format (pv);