formatting/whitespace

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@15495 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Joshua Sled 2007-02-04 15:02:07 +00:00
parent fad14daab2
commit 689796bd98

View File

@ -1014,7 +1014,7 @@ gnc_backend_new(void)
be->load_config = NULL;
be->get_config = NULL;
be->export = gnc_file_be_write_accounts_to_file;
be->export = gnc_file_be_write_accounts_to_file;
gnc_be->dirname = NULL;
gnc_be->fullpath = NULL;
@ -1024,11 +1024,11 @@ gnc_backend_new(void)
gnc_be->primary_book = NULL;
gnc_be->file_retention_days = (int)gnc_gconf_get_float("general", "retain_days", NULL);
gnc_be->file_compression = gnc_gconf_get_bool("general", "file_compression", NULL);
gnc_be->file_retention_days = (int)gnc_gconf_get_float("general", "retain_days", NULL);
gnc_be->file_compression = gnc_gconf_get_bool("general", "file_compression", NULL);
gnc_gconf_general_register_cb("retain_days", retain_changed_cb, be);
gnc_gconf_general_register_cb("file_compression", compression_changed_cb, be);
gnc_gconf_general_register_cb("retain_days", retain_changed_cb, be);
gnc_gconf_general_register_cb("file_compression", compression_changed_cb, be);
return be;
}