summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/EventLoop/DummyEventLoop.h')
-rw-r--r--Swiften/EventLoop/DummyEventLoop.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Swiften/EventLoop/DummyEventLoop.h b/Swiften/EventLoop/DummyEventLoop.h
index 088dac8..6ee1b77 100644
--- a/Swiften/EventLoop/DummyEventLoop.h
+++ b/Swiften/EventLoop/DummyEventLoop.h
@@ -1,8 +1,8 @@
/*
- * Copyright (c) 2010 Isode Limited.
+ * Copyright (c) 2010-2015 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#pragma once
@@ -12,13 +12,13 @@
#include <Swiften/EventLoop/EventLoop.h>
namespace Swift {
class SWIFTEN_API DummyEventLoop : public EventLoop {
public:
DummyEventLoop();
- ~DummyEventLoop();
+ virtual ~DummyEventLoop();
void processEvents() {
while (!events_.empty()) {
handleEvent(events_[0]);
events_.pop_front();
}