Use Qt::endl instead of the deprecated ::endl
ClosedPublic

Authored by heikobecker on Mar 24 2020, 7:40 PM.

Details

Summary

It was deprecated with Qt 5.15.

Depends on D28254.

Test Plan

Builds

Diff Detail

Repository
R368 RSIBreak
Lint
Automatic diff as part of commit; lint not applicable.
Unit
Automatic diff as part of commit; unit tests not applicable.
heikobecker requested review of this revision.Mar 24 2020, 7:40 PM
heikobecker created this revision.

the endl is really not needed though, is it? i mean

qWarning() << "Folder does not exist or is not readable: " << folder;

already adds a newline at the end, doesn't it?

Removed the endl

the endl is really not needed though, is it? i mean

qWarning() << "Folder does not exist or is not readable: " << folder;

already adds a newline at the end, doesn't it?

Doh, of course it does. Thanks.

aacid accepted this revision.Mar 25 2020, 10:21 PM
This revision is now accepted and ready to land.Mar 25 2020, 10:21 PM
This revision was automatically updated to reflect the committed changes.