Yet another pass of style fixes.

This commit is contained in:
Andreas Kling
2018-12-21 02:10:45 +01:00
parent 89040cdc99
commit ec1c487dcd
43 changed files with 183 additions and 185 deletions

View File

@@ -23,7 +23,7 @@ EventLoop& EventLoop::main()
int EventLoop::exec()
{
for (;;) {
if (m_queuedEvents.isEmpty())
if (m_queuedEvents.is_empty())
waitForEvent();
auto events = std::move(m_queuedEvents);
for (auto& queuedEvent : events) {