diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-23 19:07:30 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-23 19:07:30 -0400 |
commit | 944c63e6f26d1f05ba6f63c60f510d3796872f3e (patch) | |
tree | e1fc54319c2c42c16a64e95930acaca063658863 /src/account.h | |
parent | 057506ab6dddbfb75d1bb29289602f375ca57df5 (diff) | |
download | fork-ledger-944c63e6f26d1f05ba6f63c60f510d3796872f3e.tar.gz fork-ledger-944c63e6f26d1f05ba6f63c60f510d3796872f3e.tar.bz2 fork-ledger-944c63e6f26d1f05ba6f63c60f510d3796872f3e.zip |
The Great Renaming, Part II
The last commit did not contain the majority of changes because of a
slight mishap. This contains the real changeset.
Diffstat (limited to 'src/account.h')
-rw-r--r-- | src/account.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/account.h b/src/account.h index 8b485ec2..29b3c682 100644 --- a/src/account.h +++ b/src/account.h @@ -130,8 +130,8 @@ class account_t : public scope_t value_t value; value_t total; - std::size_t count; // xacts counted toward amount - std::size_t total_count; // xacts counted toward total + std::size_t count; // posts counted toward amount + std::size_t total_count; // posts counted toward total std::size_t virtuals; std::list<sort_value_t> sort_values; @@ -158,7 +158,7 @@ class account_t : public scope_t }; // This variable holds optional "extended data" which is usually produced - // only during reporting, and only for the transaction set being reported. + // only during reporting, and only for the posting set being reported. // It's a memory-saving measure to delay allocation until the last possible // moment. mutable optional<xdata_t> xdata_; |