summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swift/Controllers/UIInterfaces')
-rw-r--r--Swift/Controllers/UIInterfaces/HistoryWindow.h3
-rw-r--r--Swift/Controllers/UIInterfaces/HistoryWindowFactory.h2
2 files changed, 4 insertions, 1 deletions
diff --git a/Swift/Controllers/UIInterfaces/HistoryWindow.h b/Swift/Controllers/UIInterfaces/HistoryWindow.h
index cb29120..713f986 100644
--- a/Swift/Controllers/UIInterfaces/HistoryWindow.h
+++ b/Swift/Controllers/UIInterfaces/HistoryWindow.h
@@ -6,11 +6,14 @@
#pragma once
+#include <Swift/Controllers/Roster/Roster.h>
+
namespace Swift {
class HistoryWindow {
public:
virtual ~HistoryWindow() {};
virtual void activate() = 0;
+ virtual void setRosterModel(Roster*) = 0;
};
}
diff --git a/Swift/Controllers/UIInterfaces/HistoryWindowFactory.h b/Swift/Controllers/UIInterfaces/HistoryWindowFactory.h
index 135438b..e91bc37 100644
--- a/Swift/Controllers/UIInterfaces/HistoryWindowFactory.h
+++ b/Swift/Controllers/UIInterfaces/HistoryWindowFactory.h
@@ -13,6 +13,6 @@ namespace Swift {
class HistoryWindowFactory {
public:
virtual ~HistoryWindowFactory() {};
- virtual HistoryWindow* createHistoryWindow() = 0;
+ virtual HistoryWindow* createHistoryWindow(UIEventStream* eventStream) = 0;
};
}