diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-07-13 11:22:14 -0400 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-07-13 11:22:14 -0400 |
| commit | 1af52f6b8d3132b75eefbbf2a80f4cb3d33490ca (patch) | |
| tree | dd60bbb781f362836b30ff6ff1211447c2ecba1d | |
| parent | 9a0aab8d8d54baed38cdfeb9dcc248232ffa0736 (diff) | |
adding comments
| -rw-r--r-- | openbox/actions/shade.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/openbox/actions/shade.c b/openbox/actions/shade.c index 3b69b2a1..a8db0989 100644 --- a/openbox/actions/shade.c +++ b/openbox/actions/shade.c @@ -23,6 +23,7 @@ static gboolean run_func_on(ObActionsData *data, gpointer options) return FALSE; } +/* Always return FALSE because its not interactive */ static gboolean run_func_off(ObActionsData *data, gpointer options) { if (data->client) { @@ -33,6 +34,7 @@ static gboolean run_func_off(ObActionsData *data, gpointer options) return FALSE; } +/* Always return FALSE because its not interactive */ static gboolean run_func_toggle(ObActionsData *data, gpointer options) { if (data->client) { |
