summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'UI/Qt/QtChatWindowFactory.cpp')
-rw-r--r--UI/Qt/QtChatWindowFactory.cpp16
1 files changed, 0 insertions, 16 deletions
diff --git a/UI/Qt/QtChatWindowFactory.cpp b/UI/Qt/QtChatWindowFactory.cpp
deleted file mode 100644
index b0b3679..0000000
--- a/UI/Qt/QtChatWindowFactory.cpp
+++ /dev/null
@@ -1,16 +0,0 @@
-#include "QtChatWindowFactory.h"
-#include "QtChatWindow.h"
-#include "QtSwiftUtil.h"
-#include "QtTreeWidgetFactory.h"
-
-namespace Swift {
-QtChatWindowFactory::QtChatWindowFactory(QtTreeWidgetFactory *treeWidgetFactory) : treeWidgetFactory_(treeWidgetFactory) {
-
-}
-ChatWindow* QtChatWindowFactory::createChatWindow(const JID &contact) {
- QtChatWindow *chatWindow = new QtChatWindow(P2QSTRING(contact.toString()), treeWidgetFactory_);
- chatWindow->show();
- return chatWindow;
-}
-
-}