diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-24 02:34:48 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-24 02:34:48 -0400 |
commit | 2422838005a93999d18d98d4d57dc3ada1d4781b (patch) | |
tree | 2f4b47d01d606a47f754e50a3dea4a3b4965e752 /src | |
parent | 625b94cf04d083a2eca50e5630d8f7b551781742 (diff) | |
download | fork-ledger-2422838005a93999d18d98d4d57dc3ada1d4781b.tar.gz fork-ledger-2422838005a93999d18d98d4d57dc3ada1d4781b.tar.bz2 fork-ledger-2422838005a93999d18d98d4d57dc3ada1d4781b.zip |
Restored the price conversion text directive (C)
Diffstat (limited to 'src')
-rw-r--r-- | src/textual.cc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/textual.cc b/src/textual.cc index d53b4670..bedfc21a 100644 --- a/src/textual.cc +++ b/src/textual.cc @@ -436,10 +436,7 @@ void instance_t::price_conversion_directive(char * line) { if (char * p = std::strchr(line + 1, '=')) { *p++ = '\0'; -#if 0 - // jww (2008-04-22): NYI! - parse_conversion(line + 1, p); -#endif + amount_t::parse_conversion(line + 1, p); } } |