Temporarily disable currency trading accounts so that 'make check' will pass so that

2.3.8 can be released.


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18449 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Phil Longstaff 2009-11-29 19:48:21 +00:00
parent 48a3d3cd9a
commit 58f05266fb

View File

@ -452,6 +452,7 @@ static char *get_scm_string(const char *str_name)
/* Determine whether this book uses trading accounts */ /* Determine whether this book uses trading accounts */
gboolean qof_book_use_trading_accounts (const QofBook *book) gboolean qof_book_use_trading_accounts (const QofBook *book)
{ {
#if 0
static char *options_name = NULL; static char *options_name = NULL;
static char *acct_section = NULL; static char *acct_section = NULL;
static char *trading_opt = NULL; static char *trading_opt = NULL;
@ -479,6 +480,7 @@ gboolean qof_book_use_trading_accounts (const QofBook *book)
if (opt && opt[0] == 't' && opt[1] == 0) if (opt && opt[0] == 't' && opt[1] == 0)
return TRUE; return TRUE;
#endif
return FALSE; return FALSE;
} }