diff options
author | John Wiegley <johnw@newartisans.com> | 2007-04-30 08:24:37 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 03:38:34 -0400 |
commit | 3ba6c2572dfc58bcd963cbc8cac1cce2f5b01dba (patch) | |
tree | dc04c7feaeab4ce255f4f74d47325f4efb9f8314 /src/qif.cc | |
parent | 83fc097062c3380091556c6a4b703d28821d5464 (diff) | |
download | fork-ledger-3ba6c2572dfc58bcd963cbc8cac1cce2f5b01dba.tar.gz fork-ledger-3ba6c2572dfc58bcd963cbc8cac1cce2f5b01dba.tar.bz2 fork-ledger-3ba6c2572dfc58bcd963cbc8cac1cce2f5b01dba.zip |
Changed some of the logging macro names.
Diffstat (limited to 'src/qif.cc')
-rw-r--r-- | src/qif.cc | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -6,7 +6,7 @@ namespace ledger { #define MAX_LINE 1024 static char line[MAX_LINE + 1]; -static string path; +static string pathname; static unsigned int src_idx; static unsigned int linenum; @@ -52,9 +52,9 @@ unsigned int qif_parser_t::parse(std::istream& in, xact = new transaction_t(master); entry->add_transaction(xact); - path = journal->sources.back(); - src_idx = journal->sources.size() - 1; - linenum = 1; + pathname = journal->sources.back(); + src_idx = journal->sources.size() - 1; + linenum = 1; unsigned long beg_pos = 0; unsigned long beg_line = 0; |