diff options
author | John Wiegley <johnw@newartisans.com> | 2009-11-02 21:39:54 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-11-02 21:55:53 -0500 |
commit | 690e46117e1da8da1dd1bd2b9a0151c2b792104e (patch) | |
tree | 68aadb45413dfe4319d0b4d0a79985900fbc7c01 /src/amount.cc | |
parent | 4befcfa27d1e4b162512f6161f9f897862ccdf57 (diff) | |
download | fork-ledger-690e46117e1da8da1dd1bd2b9a0151c2b792104e.tar.gz fork-ledger-690e46117e1da8da1dd1bd2b9a0151c2b792104e.tar.bz2 fork-ledger-690e46117e1da8da1dd1bd2b9a0151c2b792104e.zip |
Added Python interface for commodity_t
Diffstat (limited to 'src/amount.cc')
-rw-r--r-- | src/amount.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/amount.cc b/src/amount.cc index 435cdea4..e9b971f8 100644 --- a/src/amount.cc +++ b/src/amount.cc @@ -770,7 +770,7 @@ commodity_t& amount_t::commodity() const bool amount_t::has_commodity() const { - return commodity_ && commodity_ != commodity_->parent().null_commodity; + return commodity_ && commodity_ != commodity_->pool().null_commodity; } void amount_t::annotate(const annotation_t& details) @@ -795,7 +795,7 @@ void amount_t::annotate(const annotation_t& details) << *this << std::endl << details); if (commodity_t * ann_comm = - this_base->parent().find_or_create(*this_base, details)) + this_base->pool().find_or_create(*this_base, details)) set_commodity(*ann_comm); #ifdef ASSERTS_ON else |