2004-03-14 Joshua Sled <jsled@asynchronous.org>

* src/register/register-core/formulacell.c
	(gnc_formula_cell_modify_verify): Add ':' to the token list of
	allowable characters in the formula cell. Fixes Bug#106260.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@9865 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Joshua Sled
2004-03-14 15:49:40 +00:00
parent 4df98e8ade
commit 52a65d7915
2 changed files with 7 additions and 1 deletions
+6
View File
@@ -1,3 +1,9 @@
2004-03-14 Joshua Sled <jsled@asynchronous.org>
* src/register/register-core/formulacell.c
(gnc_formula_cell_modify_verify): Add ':' to the token list of
allowable characters in the formula cell. Fixes Bug#106260.
2004-03-14 Joshua Sled <jsled@asynchronous.org>
* src/gnome/druid-loan.c (gnc_ui_sx_loan_druid_create): Use the
+1 -1
View File
@@ -126,7 +126,7 @@ gnc_formula_cell_modify_verify( BasicCell *_cell,
{
FormulaCell *cell = (FormulaCell *)_cell;
struct lconv *lc = gnc_localeconv ();
const char *toks = "+-*/=()_";
const char *toks = "+-*/=()_:";
unsigned char decimal_point;
unsigned char thousands_sep;
int i;