diff options
author | John Wiegley <johnw@newartisans.com> | 2010-06-13 00:42:25 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2010-06-13 00:42:25 -0400 |
commit | 40f553228f5a28034c6635fdcb4c86af28a385ed (patch) | |
tree | 2c40305c9f9841a4c3d453a4a5c49ec69056b4b2 /src/print.h | |
parent | 556211e623cad88213e5087b5c9c36e754d9aa02 (diff) | |
parent | b1b4e2aadff5983d443d70c09ea86a41b015873f (diff) | |
download | ledger-40f553228f5a28034c6635fdcb4c86af28a385ed.tar.gz ledger-40f553228f5a28034c6635fdcb4c86af28a385ed.tar.bz2 ledger-40f553228f5a28034c6635fdcb4c86af28a385ed.zip |
Merge branch 'next'
Diffstat (limited to 'src/print.h')
-rw-r--r-- | src/print.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/print.h b/src/print.h index f6ef0868..edfe864d 100644 --- a/src/print.h +++ b/src/print.h @@ -55,14 +55,14 @@ class report_t; class print_xacts : public item_handler<post_t> { protected: - typedef std::list<xact_t *> xacts_list; + typedef std::list<xact_t *> xacts_list; typedef std::map<xact_t *, bool> xacts_present_map; - report_t& report; + report_t& report; xacts_present_map xacts_present; - xacts_list xacts; - bool print_raw; - bool first_title; + xacts_list xacts; + bool print_raw; + bool first_title; public: print_xacts(report_t& _report, bool _print_raw = false) |