diff options
Diffstat (limited to 'src/FocusControl.hh')
-rw-r--r-- | src/FocusControl.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/FocusControl.hh b/src/FocusControl.hh index c55aa6a..79d16d4 100644 --- a/src/FocusControl.hh +++ b/src/FocusControl.hh | |||
@@ -73,16 +73,16 @@ public: | |||
73 | explicit FocusControl(BScreen &screen); | 73 | explicit FocusControl(BScreen &screen); |
74 | 74 | ||
75 | /// cycle previous focuable | 75 | /// cycle previous focuable |
76 | void prevFocus() { cycleFocus(&m_focused_list, 0, true); } | 76 | void prevFocus() { cycleFocus(m_focused_list, 0, true); } |
77 | /// cycle next focusable | 77 | /// cycle next focusable |
78 | void nextFocus() { cycleFocus(&m_focused_list, 0, false); } | 78 | void nextFocus() { cycleFocus(m_focused_list, 0, false); } |
79 | /** | 79 | /** |
80 | * Cycle focus for a set of windows. | 80 | * Cycle focus for a set of windows. |
81 | * @param winlist the windowlist to cycle through | 81 | * @param winlist the windowlist to cycle through |
82 | * @param options cycle options @see FocusOption | 82 | * @param options cycle options @see FocusOption |
83 | * @param reverse reverse the cycle order | 83 | * @param reverse reverse the cycle order |
84 | */ | 84 | */ |
85 | void cycleFocus(FocusedWindows *winlist, int options, bool reverse = false); | 85 | void cycleFocus(FocusedWindows &winlist, int options, bool reverse = false); |
86 | /// sets the focused window on a screen | 86 | /// sets the focused window on a screen |
87 | void setScreenFocusedWindow(WinClient &win_client); | 87 | void setScreenFocusedWindow(WinClient &win_client); |
88 | /// sets the main focus model | 88 | /// sets the main focus model |