summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swift/QtUI/QtUIFactory.cpp')
-rw-r--r--Swift/QtUI/QtUIFactory.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/Swift/QtUI/QtUIFactory.cpp b/Swift/QtUI/QtUIFactory.cpp
index 40ce95e..f5772bf 100644
--- a/Swift/QtUI/QtUIFactory.cpp
+++ b/Swift/QtUI/QtUIFactory.cpp
@@ -7,6 +7,7 @@
#include "QtUIFactory.h"
#include <QSplitter>
+#include <QtDebug>
#include "QtXMLConsoleWidget.h"
#include "QtChatTabs.h"
@@ -23,6 +24,7 @@
#include "UserSearch/QtUserSearchWindow.h"
#include "QtProfileWindow.h"
#include "QtContactEditWindow.h"
+#include "QtViewHistoryWindow.h"
#include "QtAdHocCommandWindow.h"
#define CHATWINDOW_FONT_SIZE "chatWindowFontSize"
@@ -124,6 +126,10 @@ ContactEditWindow* QtUIFactory::createContactEditWindow() {
return new QtContactEditWindow();
}
+ViewHistoryWindow* QtUIFactory::createViewHistoryWindow() {
+ return new QtViewHistoryWindow();
+}
+
void QtUIFactory::createAdHocCommandWindow(boost::shared_ptr<OutgoingAdHocCommandSession> command) {
new QtAdHocCommandWindow(command);
}