diff options
author | Aristid Breitkreuz <aristid.breitkreuz@gmx.de> | 2009-11-24 11:02:17 +0100 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-11-24 05:08:28 -0500 |
commit | 6df3ea10f747bf76e233f582c8a3aa06ae3afd56 (patch) | |
tree | 6646d14384997135ca2325bd888cbda78ae55dfc /src/report.cc | |
parent | a84c42fc172b2d055e4f403073f011b22b8cb298 (diff) | |
download | fork-ledger-6df3ea10f747bf76e233f582c8a3aa06ae3afd56.tar.gz fork-ledger-6df3ea10f747bf76e233f582c8a3aa06ae3afd56.tar.bz2 fork-ledger-6df3ea10f747bf76e233f582c8a3aa06ae3afd56.zip |
Added options: --unrealized-gains and --unrealized-losses
These options allow the user to specify what accounts names should be
used for these two types of accounts. They are optional, and default
to:
--unrealized-gains "Equity:Unrealized Gains"
--unrealized-losses "Equity:Unrealized Losses"
These are intended to be set in one's ~/.ledgerrc file.
Diffstat (limited to 'src/report.cc')
-rw-r--r-- | src/report.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/report.cc b/src/report.cc index 4c157312..894e0d89 100644 --- a/src/report.cc +++ b/src/report.cc @@ -887,6 +887,8 @@ option_t<report_t> * report_t::lookup_option(const char * p) OPT(unbudgeted); else OPT(uncleared); else OPT(unrealized); + else OPT(unrealized_gains_); + else OPT(unrealized_losses_); else OPT(unround); else OPT(unsorted); break; |