diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-27 15:32:38 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-27 15:32:38 -0400 |
commit | cbd66ba1c9805f03a5682f78ee1f830de8266fa4 (patch) | |
tree | 13a440d9a2428e1818d5e3e0f69540dbc7aa0a37 /src/post.h | |
parent | f881bf131985b52566e606f34b07f5f3c4df244c (diff) | |
download | fork-ledger-cbd66ba1c9805f03a5682f78ee1f830de8266fa4.tar.gz fork-ledger-cbd66ba1c9805f03a5682f78ee1f830de8266fa4.tar.bz2 fork-ledger-cbd66ba1c9805f03a5682f78ee1f830de8266fa4.zip |
Changed "priced" to "cost_calculated" for clarity
Diffstat (limited to 'src/post.h')
-rw-r--r-- | src/post.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -64,10 +64,10 @@ typedef std::list<post_t *> posts_list; class post_t : public item_t { public: -#define POST_VIRTUAL 0x10 // the account was specified with (parens) -#define POST_MUST_BALANCE 0x20 // posting must balance in the transaction -#define POST_CALCULATED 0x40 // posting's amount was calculated -#define POST_PRICED 0x80 // posting's cost was calculated +#define POST_VIRTUAL 0x10 // the account was specified with (parens) +#define POST_MUST_BALANCE 0x20 // posting must balance in the transaction +#define POST_CALCULATED 0x40 // posting's amount was calculated +#define POST_COST_CALCULATED 0x80 // posting's cost was calculated xact_t * xact; // only set for posts of regular xacts account_t * account; |