summaryrefslogtreecommitdiff
path: root/src/timelog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/timelog.h')
-rw-r--r--src/timelog.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/timelog.h b/src/timelog.h
index caa23ec0..79629408 100644
--- a/src/timelog.h
+++ b/src/timelog.h
@@ -64,14 +64,14 @@ public:
TRACE_CTOR(time_xact_t, "");
}
time_xact_t(const optional<position_t>& _position,
- const datetime_t& _checkin,
- account_t * _account = NULL,
- const string& _desc = "",
- const string& _note = "")
+ const datetime_t& _checkin,
+ account_t * _account = NULL,
+ const string& _desc = "",
+ const string& _note = "")
: checkin(_checkin), account(_account), desc(_desc), note(_note),
position(_position ? *_position : position_t()) {
TRACE_CTOR(time_xact_t,
- "position_t, datetime_t, account_t *, string, string");
+ "position_t, datetime_t, account_t *, string, string");
}
time_xact_t(const time_xact_t& xact)
: checkin(xact.checkin), account(xact.account),
@@ -86,7 +86,7 @@ public:
class time_log_t
{
std::list<time_xact_t> time_xacts;
- journal_t& journal;
+ journal_t& journal;
public:
time_log_t(journal_t& _journal) : journal(_journal) {