changed documentation and indention

This commit is contained in:
Patrizio Bekerle 2017-12-18 06:30:29 +01:00 committed by GitHub
parent ff0b0bde1d
commit 75e6d2d05b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 7 deletions

View File

@ -58,7 +58,7 @@ QtObject {
var m = new Date();
var headline = "Journal " + m.getFullYear() + ("0" + (m.getMonth()+1)).slice(-2) + ("0" + m.getDate()).slice(-2);
// when the configuration option "singleJournalPerDay" is selected create journal entries including time
// when the configuration option "singleJournalPerDay" is not selected create journal entries including time
if (!singleJournalPerDay) {
headline = headline + "T"+ ("0" + m.getHours()).slice(-2) + ("0" + m.getMinutes()).slice(-2) + ("0" + m.getSeconds()).slice(-2)
}