[Gnucash-changes] gnucash

Joshua Sled jsled at cvs.gnucash.org
Sun Mar 14 10:49:40 EST 2004


Update of /home/cvs/cvsroot/gnucash
In directory cvs.gnucash.org:/tmp/cvs-serv32096

Modified Files:
	ChangeLog 
Log Message:
2004-03-14  Joshua Sled  <jsled at 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.


Update of /home/cvs/cvsroot/gnucash/src/register/register-core
In directory cvs.gnucash.org:/tmp/cvs-serv32096/src/register/register-core

Modified Files:
	formulacell.c 
Log Message:
2004-03-14  Joshua Sled  <jsled at 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.



==================================================
Differences for ChangeLog (revision 1.1791 -> 1.1792)
==================================================
--- /home/cvs/cvsroot/gnucash/ChangeLog	2004/03/14 14:57:27	1.1791
+++ /home/cvs/cvsroot/gnucash/ChangeLog	2004/03/14 15:49:40	1.1792
@@ -1,5 +1,11 @@
 2004-03-14  Joshua Sled  <jsled at 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 at asynchronous.org>
+
 	* src/gnome/druid-loan.c (gnc_ui_sx_loan_druid_create): Use the
 	account-list filtering capability of the GncAccountSel to only
 	show/allow-creation-of valid account-types in the

==================================================
Differences for formulacell.c (revision 1.3 -> 1.4)
==================================================
--- /home/cvs/cvsroot/gnucash/src/register/register-core/formulacell.c	2003/04/12 16:53:17	1.3
+++ /home/cvs/cvsroot/gnucash/src/register/register-core/formulacell.c	2004/03/14 15:49:40	1.4
@@ -126,7 +126,7 @@
 {
   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;


More information about the Gnucash-changes mailing list