mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Journal should always ignore 'do not import sessions' date
This commit is contained in:
parent
fc5cfc2a9b
commit
dbaafed73d
@ -76,7 +76,7 @@ JournalEntry::JournalEntry(QDate date)
|
|||||||
session->set_last(et);
|
session->set_last(et);
|
||||||
|
|
||||||
// Let it live in memory...but not on disk unless data is changed...
|
// Let it live in memory...but not on disk unless data is changed...
|
||||||
jmach->AddSession(session);
|
jmach->AddSession(session, true);
|
||||||
|
|
||||||
// and where does day get set??? does day actually need to be set??
|
// and where does day get set??? does day actually need to be set??
|
||||||
day = p_profile->GetDay(date, MT_JOURNAL);
|
day = p_profile->GetDay(date, MT_JOURNAL);
|
||||||
|
@ -2126,7 +2126,7 @@ Session * Daily::CreateJournalSession(QDate date)
|
|||||||
sess->SetSessionID(st / 1000L);
|
sess->SetSessionID(st / 1000L);
|
||||||
sess->set_first(st);
|
sess->set_first(st);
|
||||||
sess->set_last(et);
|
sess->set_last(et);
|
||||||
m->AddSession(sess);
|
m->AddSession(sess, true);
|
||||||
return sess;
|
return sess;
|
||||||
}
|
}
|
||||||
Session * Daily::GetJournalSession(QDate date) // Get the first journal session
|
Session * Daily::GetJournalSession(QDate date) // Get the first journal session
|
||||||
|
Loading…
Reference in New Issue
Block a user