summaryrefslogtreecommitdiff
path: root/src/post.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-02-27 15:32:38 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-02-27 15:32:38 -0400
commitcbd66ba1c9805f03a5682f78ee1f830de8266fa4 (patch)
tree13a440d9a2428e1818d5e3e0f69540dbc7aa0a37 /src/post.h
parentf881bf131985b52566e606f34b07f5f3c4df244c (diff)
downloadfork-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.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/post.h b/src/post.h
index 4455559a..175b6cbb 100644
--- a/src/post.h
+++ b/src/post.h
@@ -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;