summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Maudsley <richard.maudsley@isode.com>2014-01-13 16:05:53 (GMT)
committerRichard Maudsley <richard.maudsley@isode.com>2014-01-13 16:05:53 (GMT)
commitf554c290a644043a2180784308a105d8f7ea8fdf (patch)
tree34aed45abf9dc1cf6e3b31a48bac6ea6224e5c5e /Swift/Controllers
parentdcddedd425e1fbb07507e8468857c75e09188cfd (diff)
downloadswift-f554c290a644043a2180784308a105d8f7ea8fdf.zip
swift-f554c290a644043a2180784308a105d8f7ea8fdf.tar.bz2
Fixed compiler errors.
Change-Id: I5a36fa14bfb0e758a1178e4b5fe3c2eb2e32b04c
Diffstat (limited to 'Swift/Controllers')
-rw-r--r--Swift/Controllers/SConscript1
-rw-r--r--Swift/Controllers/UIInterfaces/HighlightEditorWindow.h6
2 files changed, 4 insertions, 3 deletions
diff --git a/Swift/Controllers/SConscript b/Swift/Controllers/SConscript
index e0fa508..820e3f5 100644
--- a/Swift/Controllers/SConscript
+++ b/Swift/Controllers/SConscript
@@ -61,6 +61,7 @@ if env["SCONS_STAGE"] == "build" :
"UIEvents/UIEvent.cpp",
"UIInterfaces/XMLConsoleWidget.cpp",
"UIInterfaces/ChatListWindow.cpp",
+ "UIInterfaces/HighlightEditorWindow.cpp",
"PreviousStatusStore.cpp",
"ProfileSettingsProvider.cpp",
"Settings/SettingsProviderHierachy.cpp",
diff --git a/Swift/Controllers/UIInterfaces/HighlightEditorWindow.h b/Swift/Controllers/UIInterfaces/HighlightEditorWindow.h
index 760b4a8..abc8741 100644
--- a/Swift/Controllers/UIInterfaces/HighlightEditorWindow.h
+++ b/Swift/Controllers/UIInterfaces/HighlightEditorWindow.h
@@ -6,14 +6,14 @@
namespace Swift {
+class HighlightManager;
+
class HighlightEditorWindow {
public:
HighlightEditorWindow();
virtual ~HighlightEditorWindow();
- virtual void setHighlightManager(HighlightManager *highlightManager) {highlightManager_ = highlightManager;}
+ virtual void setHighlightManager(HighlightManager *highlightManager) = 0;
virtual void show() = 0;
-private:
- HighlightManager* highlightManager_;
};
}