summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2010-04-06 10:00:07 (GMT)
committerRemko Tronçon <git@el-tramo.be>2010-04-06 10:00:07 (GMT)
commit2bfc35aebd04a6fa969b8909bbc7d06cef3821c4 (patch)
treee917f503568ad3206f12304ca7fda04b5502af8f /Swift/Controllers/UIInterfaces
parent5e87304f8e31adeddcba41879057093e65047493 (diff)
downloadswift-2bfc35aebd04a6fa969b8909bbc7d06cef3821c4.zip
swift-2bfc35aebd04a6fa969b8909bbc7d06cef3821c4.tar.bz2
Fix compilation.
Diffstat (limited to 'Swift/Controllers/UIInterfaces')
-rw-r--r--Swift/Controllers/UIInterfaces/ChatListWindow.cpp8
-rw-r--r--Swift/Controllers/UIInterfaces/ChatListWindow.h2
2 files changed, 10 insertions, 0 deletions
diff --git a/Swift/Controllers/UIInterfaces/ChatListWindow.cpp b/Swift/Controllers/UIInterfaces/ChatListWindow.cpp
new file mode 100644
index 0000000..9d6c0a5
--- /dev/null
+++ b/Swift/Controllers/UIInterfaces/ChatListWindow.cpp
@@ -0,0 +1,8 @@
+#include "Swift/Controllers/UIInterfaces/ChatListWindow.h"
+
+namespace Swift {
+
+ChatListWindow::~ChatListWindow() {
+}
+
+}
diff --git a/Swift/Controllers/UIInterfaces/ChatListWindow.h b/Swift/Controllers/UIInterfaces/ChatListWindow.h
index 2883d5c..ae60203 100644
--- a/Swift/Controllers/UIInterfaces/ChatListWindow.h
+++ b/Swift/Controllers/UIInterfaces/ChatListWindow.h
@@ -7,6 +7,8 @@
namespace Swift {
class ChatListWindow {
public:
+ virtual ~ChatListWindow();
+
virtual void addMUCBookmark(boost::shared_ptr<MUCBookmark> bookmark) = 0;
virtual void removeMUCBookmark(boost::shared_ptr<MUCBookmark> bookmark) = 0;
};