Bug#340885: Disable skipping hidden accounts for the purposes of quickfill completion population.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@14182 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Joshua Sled 2006-05-24 23:27:51 +00:00
parent 882d453105
commit 970a56e37d
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,10 @@
2006-05-24 Joshua Sled <jsled@asynchronous.org>
* src/register/ledger-core/split-register-load.c (skip_cb):
Disable skipping hidden accounts for the purposes of quickfill
completion population. Less-than-ideal-but-simple fix for
Bug#340885.
2006-05-24 Derek Atkins <derek@ihtfp.com>
* src/report/report-gnome/window-report.c:

View File

@ -571,8 +571,10 @@ gnc_split_register_load (SplitRegister *reg, GList * slist,
static gboolean
skip_cb (Account *account, gpointer x)
{
/* commented out as per Bug#340885 Comments 1 and 2, option (2).
if (xaccAccountIsHidden(account))
return TRUE;
*/
return xaccAccountGetPlaceholder (account);
}