Skip to content

Commit

Permalink
Qt::endl is not available in Qt5.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Murmele committed Sep 7, 2022
1 parent 09f8d2c commit e3c63ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/git/Remote.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ void Remote::log(const QString &text) {
return;

QString time = QTime::currentTime().toString(Qt::ISODateWithMs);
QTextStream(&file) << time << " - " << text << Qt::endl;
QTextStream(&file) << time << " - " << text << endl;
}

} // namespace git

0 comments on commit e3c63ce

Please sign in to comment.