diff options
author | John Wiegley <johnw@newartisans.com> | 2011-07-17 15:28:38 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2011-07-17 15:28:38 -0500 |
commit | f2d99dae082dbd9a289c01b94930e52e021d9a4c (patch) | |
tree | 9e7de551a06959683aca255ccd95c794bb46c28f /src/textual.cc | |
parent | c4a3a7bbe553e2b1adaeb845dc9e675ccdfd6fdb (diff) | |
download | fork-ledger-f2d99dae082dbd9a289c01b94930e52e021d9a4c.tar.gz fork-ledger-f2d99dae082dbd9a289c01b94930e52e021d9a4c.tar.bz2 fork-ledger-f2d99dae082dbd9a289c01b94930e52e021d9a4c.zip |
Rely on a default argument in textual.cc
Diffstat (limited to 'src/textual.cc')
-rw-r--r-- | src/textual.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textual.cc b/src/textual.cc index 0e7f2aec..6dd0caa6 100644 --- a/src/textual.cc +++ b/src/textual.cc @@ -1320,7 +1320,7 @@ post_t * instance_t::parse_post(char * line, amount_t& amt(*post->assigned_amount); value_t account_total - (post->account->amount(false).strip_annotations(keep_details_t())); + (post->account->amount().strip_annotations(keep_details_t())); DEBUG("post.assign", "line " << linenum << ": " "account balance = " << account_total); |