summaryrefslogtreecommitdiff
path: root/openbox/stacking.h
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@gmail.com>2014-07-12 05:19:41 +0200
committerMikael Magnusson <mikachu@gmail.com>2014-10-20 10:28:00 +0200
commit6273bf2e94a777760fee5346c290fb6672a0cb70 (patch)
tree3905f6f3a5be9f9f4e5f17313690f0dd9baaa353 /openbox/stacking.h
parent7b3dc69468e3cb97117b82036041afd9d89912e1 (diff)
Make RaiseLower work for the dock as well
As a side effect, _NET_RESTACK_REQUEST now also allows specifying the dock as the sibling.
Diffstat (limited to 'openbox/stacking.h')
-rw-r--r--openbox/stacking.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/stacking.h b/openbox/stacking.h
index c14aa2ed..ebfa1755 100644
--- a/openbox/stacking.h
+++ b/openbox/stacking.h
@@ -71,7 +71,7 @@ void stacking_below(struct _ObWindow *window, struct _ObWindow *below);
/*! Restack a window based upon a sibling (or all windows) in various ways.
@param client The client to be restacked
- @param sibling Another client to compare to, or NULL to compare to all
+ @param sibling A window to compare to, or NULL to compare to all
windows
@param detail One of Above, Below, TopIf, BottomIf, Opposite
@return TRUE if the client was restacked
@@ -79,7 +79,7 @@ void stacking_below(struct _ObWindow *window, struct _ObWindow *below);
how each detail works with and without a sibling.
*/
gboolean stacking_restack_request(struct _ObClient *client,
- struct _ObClient *sibling,
+ struct _ObWindow *sibling_win,
gint detail);
#endif