aboutsummaryrefslogtreecommitdiff
path: root/src/FocusControl.hh
diff options
context:
space:
mode:
authormarkt <markt>2007-07-17 21:21:17 (GMT)
committermarkt <markt>2007-07-17 21:21:17 (GMT)
commit8de73d0fd4fde6e6f5349831304fb9a268af8d70 (patch)
tree2ee5cbbdb283c76db81527cfcfed7c1344d20df0 /src/FocusControl.hh
parent5aecf58d47702e6d12ff1174b03a797b516245b7 (diff)
downloadfluxbox-8de73d0fd4fde6e6f5349831304fb9a268af8d70.zip
fluxbox-8de73d0fd4fde6e6f5349831304fb9a268af8d70.tar.bz2
updated behavior of alt-tab to match pre-devel, fixing bug #1755698
Diffstat (limited to 'src/FocusControl.hh')
-rw-r--r--src/FocusControl.hh6
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