diff options
author | John Wiegley <johnw@newartisans.com> | 2010-06-20 18:59:30 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2010-06-20 20:29:56 -0400 |
commit | 3a5653e365b1572ee43fbfb8213edd1083de97cd (patch) | |
tree | 7e0923dca821db7121667b20e73a40106e992d70 /src/filters.h | |
parent | 82e43fe125a9b2158976fe5a3afccfa85d7a7574 (diff) | |
download | fork-ledger-3a5653e365b1572ee43fbfb8213edd1083de97cd.tar.gz fork-ledger-3a5653e365b1572ee43fbfb8213edd1083de97cd.tar.bz2 fork-ledger-3a5653e365b1572ee43fbfb8213edd1083de97cd.zip |
Rename dow_posts to day_of_week_posts, to be clearer
Diffstat (limited to 'src/filters.h')
-rw-r--r-- | src/filters.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/filters.h b/src/filters.h index 72e8f19f..76648bee 100644 --- a/src/filters.h +++ b/src/filters.h @@ -813,19 +813,19 @@ public: } }; -class dow_posts : public subtotal_posts +class day_of_week_posts : public subtotal_posts { posts_list days_of_the_week[7]; - dow_posts(); + day_of_week_posts(); public: - dow_posts(post_handler_ptr handler, expr_t& amount_expr) + day_of_week_posts(post_handler_ptr handler, expr_t& amount_expr) : subtotal_posts(handler, amount_expr) { - TRACE_CTOR(dow_posts, "post_handler_ptr, bool"); + TRACE_CTOR(day_of_week_posts, "post_handler_ptr, bool"); } - virtual ~dow_posts() throw() { - TRACE_DTOR(dow_posts); + virtual ~day_of_week_posts() throw() { + TRACE_DTOR(day_of_week_posts); } virtual void flush(); |