diff options
author | sabetts <sabetts> | 2004-11-03 03:01:12 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2004-11-03 03:01:12 +0000 |
commit | 0832f74bbbc6cac86740966afb8056ce53e3ca92 (patch) | |
tree | 709639f77c88fb6b2f599d5a129c94a32bde6ad2 /src/window.h | |
parent | f9c720556c0d3fd96fe0f5882439fb71ebdcfe77 (diff) | |
download | ratpoison-0832f74bbbc6cac86740966afb8056ce53e3ca92.zip |
* src/group.c (group_last_window): add argument, the screen to find the
window in. All callers updated.
(group_prev_window): make sure the matched window is in the same
screen as win.
(group_next_window): likewise
* src/window.c (find_window_other): add argument, the screen to
find the window in. All callers updated.
Diffstat (limited to 'src/window.h')
-rw-r--r-- | src/window.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.h b/src/window.h index ac26881..e93c7f3 100644 --- a/src/window.h +++ b/src/window.h @@ -45,7 +45,7 @@ int is_transient_ancestor (rp_window *win, rp_window *transient_for); #endif /* int goto_window_name (char *name); */ -rp_window *find_window_other (); +rp_window *find_window_other (rp_screen *screen); rp_window *find_window_by_number (int n); rp_window *find_window_name (char *name); rp_window *find_window_prev (rp_window *w); |