diff options
author | Tobias Markmann <tm@ayena.de> | 2015-12-17 19:47:37 (GMT) |
---|---|---|
committer | Tobias Markmann <tm@ayena.de> | 2015-12-17 19:47:37 (GMT) |
commit | 6c63910aa1016f06113fd562c8ffebfa6b4241b2 (patch) | |
tree | c75911df794454dc0a727c865f8d46fd9bf5075d /Swiften | |
parent | 523dbfb769069663eda19e381ad35f466b1ef27c (diff) | |
download | swift-6c63910aa1016f06113fd562c8ffebfa6b4241b2.zip swift-6c63910aa1016f06113fd562c8ffebfa6b4241b2.tar.bz2 |
Fix misspelled method call
Test-Information:
Builds and tests pass.
Change-Id: I7c12036903ea535fe0a7ee7085b2268894c546bd
Diffstat (limited to 'Swiften')
-rw-r--r-- | Swiften/EventLoop/BoostASIOEventLoop.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swiften/EventLoop/BoostASIOEventLoop.cpp b/Swiften/EventLoop/BoostASIOEventLoop.cpp index f3c5618..1574434 100644 --- a/Swiften/EventLoop/BoostASIOEventLoop.cpp +++ b/Swiften/EventLoop/BoostASIOEventLoop.cpp @@ -23,7 +23,7 @@ void BoostASIOEventLoop::handleASIOEvent() { boost::recursive_mutex::scoped_lock lock(isEventInASIOEventLoopMutex_); isEventInASIOEventLoop_ = false; } - handleNextEvent(); + handleNextEvents(); } void BoostASIOEventLoop::eventPosted() { |