diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-22 03:14:58 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-22 04:51:11 -0400 |
commit | 04fd1ae24c3be6f9d3400c55bce90c3fd743e96b (patch) | |
tree | 25d1ad1adfd755b41ee1f24b3177a2d11219e714 /src/value.h | |
parent | 640279c65d638d777852a291d674c342a9b8115e (diff) | |
download | ledger-04fd1ae24c3be6f9d3400c55bce90c3fd743e96b.tar.gz ledger-04fd1ae24c3be6f9d3400c55bce90c3fd743e96b.tar.bz2 ledger-04fd1ae24c3be6f9d3400c55bce90c3fd743e96b.zip |
Fixed the way values are justified for printing
Diffstat (limited to 'src/value.h')
-rw-r--r-- | src/value.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/value.h b/src/value.h index 5fb78cb4..546707f0 100644 --- a/src/value.h +++ b/src/value.h @@ -890,9 +890,10 @@ public: * Printing methods. */ void print(std::ostream& out, - const int first_width = - 1, - const int latter_width = -1, - const optional<string>& date_format = none) const; + const int first_width = -1, + const int latter_width = -1, + const bool right_justify = false, + const optional<string>& date_format = none) const; void dump(std::ostream& out, const bool relaxed = true) const; /** |