From 7236897bab5c7344e5ccf6aa6a0366bcdbbbf3f6 Mon Sep 17 00:00:00 2001 From: James LewisMoss Date: Tue, 15 May 2001 15:49:10 +0000 Subject: [PATCH] write title as well. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@4201 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/engine/io-example-account.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/engine/io-example-account.c b/src/engine/io-example-account.c index d3e57d4cd9..e7dddac34d 100644 --- a/src/engine/io-example-account.c +++ b/src/engine/io-example-account.c @@ -320,6 +320,8 @@ gnc_write_example_account(GncExampleAccount *gea, const gchar *filename) fprintf(out, "\n"); fprintf(out, "<" GNC_ACCOUNT_STRING ">\n"); + write_string_part(out, GNC_ACCOUNT_TITLE, gea->title); + write_string_part(out, GNC_ACCOUNT_SHORT, gea->short_description); write_string_part(out, GNC_ACCOUNT_LONG, gea->long_description);