diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-05-14 23:21:53 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-05-14 23:21:53 +0000 |
| commit | f5d7952a9470f132a612d71b8c86a1279ea3efa3 (patch) | |
| tree | edf8a8da5492f4318959fd3279a6a57e83e16ac1 /openbox/client.h | |
| parent | f9fe78d970fa1ef62d56160db7a82fa6948643b6 (diff) | |
big scary g_assert(). interactive actions should never move focus until they're done.
Diffstat (limited to 'openbox/client.h')
| -rw-r--r-- | openbox/client.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/openbox/client.h b/openbox/client.h index aaebceaa..5526c282 100644 --- a/openbox/client.h +++ b/openbox/client.h @@ -493,11 +493,11 @@ void client_kill(ObClient *self); */ void client_set_desktop(ObClient *self, guint target, gboolean donthide); -/*! Show the client if it should be shown. */ -void client_show(ObClient *self); +/*! Show the client if it should be shown. Returns if the window is shown. */ +gboolean client_show(ObClient *self); -/*! Show the client if it should be shown. */ -void client_hide(ObClient *self); +/*! Show the client if it should be shown. Returns if the window is hidden. */ +gboolean client_hide(ObClient *self); /*! Show the client if it should be shown, and hide it if it should be hidden. This is for example, when switching desktops. |
