diff options
author | John Wiegley <johnw@newartisans.com> | 2019-01-25 15:49:22 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-25 15:49:22 -0800 |
commit | ba40cd0d0ce825c9be108611d0b59c42f434b6ac (patch) | |
tree | ecb0633f5fbfd14ac48360ab5819b64bb9c6ad39 /src | |
parent | 7f8f3275ad251d805eaeda379b7dda7291167243 (diff) | |
parent | 67578afa21630b19410a7e729005bf2b17fb9200 (diff) | |
download | fork-ledger-ba40cd0d0ce825c9be108611d0b59c42f434b6ac.tar.gz fork-ledger-ba40cd0d0ce825c9be108611d0b59c42f434b6ac.tar.bz2 fork-ledger-ba40cd0d0ce825c9be108611d0b59c42f434b6ac.zip |
Merge pull request #1657 from nagakiran/timelog-checkin-multiple-accounts-at-a-time
Timelog: Not able to check-in to multiple accounts at a time
Diffstat (limited to 'src')
-rw-r--r-- | src/timelog.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/timelog.cc b/src/timelog.cc index 2a618afd..5b289a34 100644 --- a/src/timelog.cc +++ b/src/timelog.cc @@ -170,7 +170,7 @@ void time_log_t::close() foreach (account_t * account, accounts) { DEBUG("timelog", "Clocking out from account " << account->fullname()); context.count += clock_out_from_timelog - (time_xacts, time_xact_t(none, CURRENT_TIME(), account), context); + (time_xacts, time_xact_t(none, CURRENT_TIME(), false, account), context); } assert(time_xacts.empty()); } |