summaryrefslogtreecommitdiff
path: root/src/post.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2012-05-14 21:36:42 -0600
committerJohn Wiegley <johnw@newartisans.com>2012-05-14 21:44:00 -0600
commitf4f3058b8cd75c04080f9b68cb54b9584eafb39f (patch)
treeeca9ca6ceca001209fb93c05b52e21031280d18c /src/post.h
parent96172669053bbba7263a370f109f70615049a0c6 (diff)
downloadfork-ledger-f4f3058b8cd75c04080f9b68cb54b9584eafb39f.tar.gz
fork-ledger-f4f3058b8cd75c04080f9b68cb54b9584eafb39f.tar.bz2
fork-ledger-f4f3058b8cd75c04080f9b68cb54b9584eafb39f.zip
Switch to using Boost.Format
Diffstat (limited to 'src/post.h')
-rw-r--r--src/post.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/post.h b/src/post.h
index 78928f23..f4bff01f 100644
--- a/src/post.h
+++ b/src/post.h
@@ -106,7 +106,7 @@ public:
virtual string description() {
if (pos) {
std::ostringstream buf;
- buf << _("posting at line %1") << pos->beg_line;
+ buf << _f("posting at line %1") << pos->beg_line;
return buf.str();
} else {
return string(_("generated posting"));