summaryrefslogtreecommitdiff
path: root/src/item.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-02-09 17:27:54 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-02-09 17:27:54 -0400
commit6ca01af594148e12cd8e1da87302644a0bbae3a0 (patch)
treebb83af15a352e3125053a3d5c0761f8e395ed2c3 /src/item.h
parentcad86ed87f3548aaf9d35890f2b686c2bf064368 (diff)
downloadledger-6ca01af594148e12cd8e1da87302644a0bbae3a0.tar.gz
ledger-6ca01af594148e12cd8e1da87302644a0bbae3a0.tar.bz2
ledger-6ca01af594148e12cd8e1da87302644a0bbae3a0.zip
Fixed the use of --effective and --date-format (-y).
Diffstat (limited to 'src/item.h')
-rw-r--r--src/item.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/item.h b/src/item.h
index 85dbf7ed..9621b541 100644
--- a/src/item.h
+++ b/src/item.h
@@ -126,8 +126,13 @@ public:
virtual void parse_tags(const char * p, int current_year = -1);
virtual void append_note(const char * p, int current_year = -1);
+ static bool use_effective_date;
+
virtual date_t date() const {
assert(_date);
+ if (use_effective_date)
+ if (optional<date_t> effective = effective_date())
+ return *effective;
return *_date;
}
virtual optional<date_t> effective_date() const {