aboutsummaryrefslogtreecommitdiff
path: root/src/FocusableList.hh
diff options
context:
space:
mode:
authorPavel Labath <pavelo@centrum.sk>2011-05-03 21:48:24 (GMT)
committerPavel Labath <pavelo@centrum.sk>2011-05-10 11:00:45 (GMT)
commit129bac1e0f0979c80902edc8e092596b81fe14f6 (patch)
tree0624ee5da85ec2d1f758612cddae2e95a50249f9 /src/FocusableList.hh
parent0775350fee345e37fb59835dda4d85664346b606 (diff)
downloadfluxbox-129bac1e0f0979c80902edc8e092596b81fe14f6.zip
fluxbox-129bac1e0f0979c80902edc8e092596b81fe14f6.tar.bz2
Convert Focusable::dieSig to FbTk::Signal
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