summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2004-09-17 04:38:24 -0400
committerJohn Wiegley <johnw@newartisans.com>2004-09-17 04:38:24 -0400
commit79b664f6f0399ac1b272de89107515aa6af20dcd (patch)
treeb8ae77e179de42ddcae2dc866189cc33347ba98f /config.h
parent50a322adcfa3c1ac375e061270e73bc76c57cc47 (diff)
downloadfork-ledger-79b664f6f0399ac1b272de89107515aa6af20dcd.tar.gz
fork-ledger-79b664f6f0399ac1b272de89107515aa6af20dcd.tar.bz2
fork-ledger-79b664f6f0399ac1b272de89107515aa6af20dcd.zip
changed the management of "xdata" in walk.h
Diffstat (limited to 'config.h')
-rw-r--r--config.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/config.h b/config.h
index 72cc6cd6..e12936b4 100644
--- a/config.h
+++ b/config.h
@@ -34,7 +34,7 @@ struct config_t
std::string account;
std::string predicate;
std::string display_predicate;
- std::string interval_text;
+ std::string report_interval;
std::string format_string;
std::string date_format;
std::string sort_string;
@@ -56,22 +56,14 @@ struct config_t
bool use_cache;
bool cache_dirty;
- interval_t report_interval;
format_t format;
format_t nformat;
- value_expr_t * sort_order;
-
config_t();
config_t(const config_t&) {
assert(0);
}
- ~config_t() {
- if (sort_order)
- delete sort_order;
- }
-
void process_options(const std::string& command,
strings_list::iterator arg,
strings_list::iterator args_end);