diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-23 19:07:30 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-23 19:07:30 -0400 |
commit | 944c63e6f26d1f05ba6f63c60f510d3796872f3e (patch) | |
tree | e1fc54319c2c42c16a64e95930acaca063658863 /src/compare.h | |
parent | 057506ab6dddbfb75d1bb29289602f375ca57df5 (diff) | |
download | fork-ledger-944c63e6f26d1f05ba6f63c60f510d3796872f3e.tar.gz fork-ledger-944c63e6f26d1f05ba6f63c60f510d3796872f3e.tar.bz2 fork-ledger-944c63e6f26d1f05ba6f63c60f510d3796872f3e.zip |
The Great Renaming, Part II
The last commit did not contain the majority of changes because of a
slight mishap. This contains the real changeset.
Diffstat (limited to 'src/compare.h')
-rw-r--r-- | src/compare.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compare.h b/src/compare.h index bf85e1c7..92cee665 100644 --- a/src/compare.h +++ b/src/compare.h @@ -47,7 +47,7 @@ #define _COMPARE_H #include "expr.h" -#include "xact.h" +#include "post.h" #include "account.h" namespace ledger { @@ -91,7 +91,7 @@ bool compare_items<T>::operator()(T * left, T * right) } template <> -bool compare_items<xact_t>::operator()(xact_t * left, xact_t * right); +bool compare_items<post_t>::operator()(post_t * left, post_t * right); template <> bool compare_items<account_t>::operator()(account_t * left, account_t * right); |