diff options
Diffstat (limited to 'src/FocusModelMenuItem.hh')
-rw-r--r-- | src/FocusModelMenuItem.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/FocusModelMenuItem.hh b/src/FocusModelMenuItem.hh index db023f5..d75e8a0 100644 --- a/src/FocusModelMenuItem.hh +++ b/src/FocusModelMenuItem.hh | |||
@@ -28,7 +28,7 @@ | |||
28 | #include "FbTk/RefCount.hh" | 28 | #include "FbTk/RefCount.hh" |
29 | 29 | ||
30 | namespace FbTk { | 30 | namespace FbTk { |
31 | class Command; | 31 | template <class T> class Command; |
32 | } | 32 | } |
33 | 33 | ||
34 | #include "FocusControl.hh" | 34 | #include "FocusControl.hh" |
@@ -37,7 +37,7 @@ class FocusModelMenuItem : public FbTk::MenuItem { | |||
37 | public: | 37 | public: |
38 | FocusModelMenuItem(const FbTk::FbString &label, FocusControl &focus_control, | 38 | FocusModelMenuItem(const FbTk::FbString &label, FocusControl &focus_control, |
39 | FocusControl::FocusModel model, | 39 | FocusControl::FocusModel model, |
40 | FbTk::RefCount<FbTk::Command> &cmd): | 40 | FbTk::RefCount<FbTk::Command<void> > &cmd): |
41 | FbTk::MenuItem(label, cmd), | 41 | FbTk::MenuItem(label, cmd), |
42 | m_focus_control(focus_control), | 42 | m_focus_control(focus_control), |
43 | m_focusmodel(model) { | 43 | m_focusmodel(model) { |
@@ -61,7 +61,7 @@ public: | |||
61 | TabFocusModelMenuItem(const FbTk::FbString &label, | 61 | TabFocusModelMenuItem(const FbTk::FbString &label, |
62 | FocusControl &focus_control, | 62 | FocusControl &focus_control, |
63 | FocusControl::TabFocusModel model, | 63 | FocusControl::TabFocusModel model, |
64 | FbTk::RefCount<FbTk::Command> &cmd): | 64 | FbTk::RefCount<FbTk::Command<void> > &cmd): |
65 | FbTk::MenuItem(label, cmd), | 65 | FbTk::MenuItem(label, cmd), |
66 | m_focus_control(focus_control), | 66 | m_focus_control(focus_control), |
67 | m_tabfocusmodel(model) { | 67 | m_tabfocusmodel(model) { |