summaryrefslogtreecommitdiff
path: root/src/session.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2010-06-01 17:44:28 -0400
committerJohn Wiegley <johnw@newartisans.com>2010-06-01 17:56:41 -0400
commit038c24357e85b3b33460f3b8d41b1ef4ab0ed901 (patch)
tree1c0b5770843a7dae763f5f0264219a060e34fb96 /src/session.h
parentd513c71236b3e91bb999158829250e7194a9d56e (diff)
downloadledger-038c24357e85b3b33460f3b8d41b1ef4ab0ed901.tar.gz
ledger-038c24357e85b3b33460f3b8d41b1ef4ab0ed901.tar.bz2
ledger-038c24357e85b3b33460f3b8d41b1ef4ab0ed901.zip
Changed --european option to --decimal-comma
Fixes #211 / 1736ACA5-5DE6-4826-AEB4-DB5B2A2217AC
Diffstat (limited to 'src/session.h')
-rw-r--r--src/session.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/session.h b/src/session.h
index de1771ad..10f636bb 100644
--- a/src/session.h
+++ b/src/session.h
@@ -80,7 +80,7 @@ public:
{
HANDLER(cache_).report(out);
HANDLER(download).report(out);
- HANDLER(european).report(out);
+ HANDLER(decimal_comma).report(out);
HANDLER(file_).report(out);
HANDLER(input_date_format_).report(out);
HANDLER(master_account_).report(out);
@@ -101,8 +101,8 @@ public:
OPTION(session_t, cache_);
OPTION(session_t, download); // -Q
- OPTION_(session_t, european, DO() {
- commodity_t::european_by_default = true;
+ OPTION_(session_t, decimal_comma, DO() {
+ commodity_t::decimal_comma_by_default = true;
});
OPTION__