[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[patch 6/7] Use var_is_alpha.
From: |
blp |
Subject: |
[patch 6/7] Use var_is_alpha. |
Date: |
Sat, 02 Jun 2007 15:36:53 -0700 |
User-agent: |
quilt/0.45-1 |
diff --git a/src/ui/gui/psppire-var-store.c b/src/ui/gui/psppire-var-store.c
index 3b3011f..7d2c8a9 100644
--- a/src/ui/gui/psppire-var-store.c
+++ b/src/ui/gui/psppire-var-store.c
@@ -154,7 +154,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_write_format (pv);
--
1.4.4.3
--
- [patch 0/7] some bits of simpler-proc ready for review, blp, 2007/06/03
- [patch 2/7] Add insert_range, insert_element functions., blp, 2007/06/03
- [patch 7/7] Implement support for "INTEGER LIST"-type subcommands in q2c. The documentation claimed these were supported, but actually they werent., blp, 2007/06/03
- [patch 5/7] Remove author. Fix compile-command., blp, 2007/06/03
- [patch 6/7] Use var_is_alpha.,
blp <=
- [patch 4/7] Remove next, prev, up node names from @node lines, to make structural changes to the manual easier. (These node names are not needed by makeinfo.), blp, 2007/06/03
- [patch 3/7] Ignore _ndebug, _profile directories that I use for -DNDEBUG and profiling builds., blp, 2007/06/03
- [patch 1/7] Insert some missing "#include <config.h>" lines., blp, 2007/06/03
- Re: [patch 0/7] some bits of simpler-proc ready for review, John Darrington, 2007/06/03