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/xact.h | |
parent | 556211e623cad88213e5087b5c9c36e754d9aa02 (diff) | |
parent | b1b4e2aadff5983d443d70c09ea86a41b015873f (diff) | |
download | fork-ledger-40f553228f5a28034c6635fdcb4c86af28a385ed.tar.gz fork-ledger-40f553228f5a28034c6635fdcb4c86af28a385ed.tar.bz2 fork-ledger-40f553228f5a28034c6635fdcb4c86af28a385ed.zip |
Merge branch 'next'
Diffstat (limited to 'src/xact.h')
-rw-r--r-- | src/xact.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -106,7 +106,7 @@ class xact_t : public xact_base_t { public: optional<string> code; - string payee; + string payee; xact_t() { TRACE_CTOR(xact_t, ""); @@ -123,7 +123,7 @@ public: string id() const; virtual expr_t::ptr_op_t lookup(const symbol_t::kind_t kind, - const string& name); + const string& name); virtual bool valid() const; @@ -188,7 +188,7 @@ class period_xact_t : public xact_base_t { public: date_interval_t period; - string period_string; + string period_string; period_xact_t() { TRACE_CTOR(period_xact_t, ""); @@ -221,7 +221,7 @@ private: #endif // HAVE_BOOST_SERIALIZATION }; -typedef std::list<xact_t *> xacts_list; +typedef std::list<xact_t *> xacts_list; typedef std::list<auto_xact_t *> auto_xacts_list; typedef std::list<period_xact_t *> period_xacts_list; |