aboutsummaryrefslogtreecommitdiff
path: root/src/FocusableList.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/FocusableList.hh')
-rw-r--r--src/FocusableList.hh3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/FocusableList.hh b/src/FocusableList.hh
index 1382da6..6e46db9 100644
--- a/src/FocusableList.hh
+++ b/src/FocusableList.hh
@@ -24,6 +24,7 @@
24 24
25#include "FbTk/NotCopyable.hh" 25#include "FbTk/NotCopyable.hh"
26#include "FbTk/Observer.hh" 26#include "FbTk/Observer.hh"
27#include "FbTk/RefCount.hh"
27#include "FbTk/Subject.hh" 28#include "FbTk/Subject.hh"
28#include "FbTk/Signal.hh" 29#include "FbTk/Signal.hh"
29 30
@@ -126,7 +127,7 @@ private:
126 std::list<Focusable *> m_list; 127 std::list<Focusable *> m_list;
127 128
128 mutable FocusableListSubject m_ordersig, m_addsig, m_removesig, m_resetsig; 129 mutable FocusableListSubject m_ordersig, m_addsig, m_removesig, m_resetsig;
129 typedef std::map<Focusable*, FbTk::SignalTracker::TrackID> SignalMap; 130 typedef std::map<Focusable*, FbTk::RefCount<FbTk::SignalTracker> > SignalMap;
130 SignalMap m_signal_map; 131 SignalMap m_signal_map;
131}; 132};
132 133