diff options
Diffstat (limited to 'src/WorkspaceCmd.hh')
-rw-r--r-- | src/WorkspaceCmd.hh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/WorkspaceCmd.hh b/src/WorkspaceCmd.hh index 72b90ef..7051fa0 100644 --- a/src/WorkspaceCmd.hh +++ b/src/WorkspaceCmd.hh | |||
@@ -25,7 +25,9 @@ | |||
25 | #ifndef WORKSPACECMD_HH | 25 | #ifndef WORKSPACECMD_HH |
26 | #define WORKSPACECMD_HH | 26 | #define WORKSPACECMD_HH |
27 | #include "Command.hh" | 27 | #include "Command.hh" |
28 | #include "Screen.hh" | 28 | |
29 | #include "FocusControl.hh" | ||
30 | |||
29 | 31 | ||
30 | class NextWindowCmd: public FbTk::Command { | 32 | class NextWindowCmd: public FbTk::Command { |
31 | public: | 33 | public: |
@@ -45,10 +47,10 @@ private: | |||
45 | 47 | ||
46 | class DirFocusCmd: public FbTk::Command { | 48 | class DirFocusCmd: public FbTk::Command { |
47 | public: | 49 | public: |
48 | explicit DirFocusCmd(const BScreen::FocusDir dir): m_dir(dir) { } | 50 | explicit DirFocusCmd(const FocusControl::FocusDir dir): m_dir(dir) { } |
49 | void execute(); | 51 | void execute(); |
50 | private: | 52 | private: |
51 | const BScreen::FocusDir m_dir; | 53 | const FocusControl::FocusDir m_dir; |
52 | }; | 54 | }; |
53 | 55 | ||
54 | class NextWorkspaceCmd: public FbTk::Command { | 56 | class NextWorkspaceCmd: public FbTk::Command { |