summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/EventLoop/DummyEventLoop.cpp')
-rw-r--r--Swiften/EventLoop/DummyEventLoop.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Swiften/EventLoop/DummyEventLoop.cpp b/Swiften/EventLoop/DummyEventLoop.cpp
index 4dfbac3..4712fad 100644
--- a/Swiften/EventLoop/DummyEventLoop.cpp
+++ b/Swiften/EventLoop/DummyEventLoop.cpp
@@ -1,5 +1,5 @@
1/* 1/*
2 * Copyright (c) 2010-2016 Isode Limited. 2 * Copyright (c) 2010-2019 Isode Limited.
3 * All rights reserved. 3 * All rights reserved.
4 * See the COPYING file for more information. 4 * See the COPYING file for more information.
5 */ 5 */
@@ -22,7 +22,7 @@ DummyEventLoop::~DummyEventLoop() {
22void DummyEventLoop::processEvents() { 22void DummyEventLoop::processEvents() {
23 while(hasEvents()) { 23 while(hasEvents()) {
24 hasEvents_ = false; 24 hasEvents_ = false;
25 handleNextEvents(); 25 handleNextEvent();
26 } 26 }
27} 27}
28 28