summaryrefslogtreecommitdiff
path: root/src/value.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-02-22 03:14:58 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-02-22 04:51:11 -0400
commit04fd1ae24c3be6f9d3400c55bce90c3fd743e96b (patch)
tree25d1ad1adfd755b41ee1f24b3177a2d11219e714 /src/value.h
parent640279c65d638d777852a291d674c342a9b8115e (diff)
downloadledger-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.h7
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;
/**