diff options
author | John Wiegley <johnw@newartisans.com> | 2012-02-29 22:11:55 -0600 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-02-29 22:11:55 -0600 |
commit | 8013e091292628b3e631fea07342c31f1c36966b (patch) | |
tree | 6e3e804c4fba3a416dfa79a890f25381032b8552 /src/draft.cc | |
parent | eac84f5e2184cabad709fbb165d58d0b17f791d0 (diff) | |
download | fork-ledger-8013e091292628b3e631fea07342c31f1c36966b.tar.gz fork-ledger-8013e091292628b3e631fea07342c31f1c36966b.tar.bz2 fork-ledger-8013e091292628b3e631fea07342c31f1c36966b.zip |
Added STR() utility function
Diffstat (limited to 'src/draft.cc')
-rw-r--r-- | src/draft.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/draft.cc b/src/draft.cc index 2b8b45f7..9f9ec6e8 100644 --- a/src/draft.cc +++ b/src/draft.cc @@ -67,10 +67,8 @@ void draft_t::xact_template_t::dump(std::ostream& out) const << std::endl; } else { foreach (const post_template_t& post, posts) { - straccstream accum; out << std::endl - << ACCUM(accum << _("[Posting \"%1\"]") - << (post.from ? _("from") : _("to"))) + << STR(_("[Posting \"%1\"]") << (post.from ? _("from") : _("to"))) << std::endl; if (post.account_mask) |