diff options
| author | Mikael Magnusson <mikachu@comhem.se> | 2007-05-17 09:20:16 +0000 |
|---|---|---|
| committer | Mikael Magnusson <mikachu@comhem.se> | 2007-05-17 09:20:16 +0000 |
| commit | c8b4710755f5580cb086a9e23d8db0d65c7416e5 (patch) | |
| tree | 5546acdaeec72bed31a5338b61d90f40b60bb884 /openbox | |
| parent | 9d004f517be91a6f2d9d6ca22ffa686a6eb27088 (diff) | |
static makes more sense than inline i think
Diffstat (limited to 'openbox')
| -rw-r--r-- | openbox/action.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/action.c b/openbox/action.c index 431b88c1..0a2d2b62 100644 --- a/openbox/action.c +++ b/openbox/action.c @@ -38,11 +38,11 @@ #include <glib.h> -inline void client_action_start(union ActionData *data) +static void client_action_start(union ActionData *data) { } -inline void client_action_end(union ActionData *data) +static void client_action_end(union ActionData *data) { if (config_focus_follow) if (data->any.context != OB_FRAME_CONTEXT_CLIENT) { |
