diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-03-21 09:31:36 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-03-21 09:31:36 +0000 |
| commit | dabcb558cd10295f9382607936ead64d8b210b99 (patch) | |
| tree | b40b6a252c8f5f56499111208af2a1d305000b2e /plugins/focus.c | |
| parent | 34ab5a1fb88f910d1a2d4e5f40859edcf035150b (diff) | |
make the event function static!
Diffstat (limited to 'plugins/focus.c')
| -rw-r--r-- | plugins/focus.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/focus.c b/plugins/focus.c index 9424a236..8528d68c 100644 --- a/plugins/focus.c +++ b/plugins/focus.c @@ -74,7 +74,7 @@ static void focus_fallback(gboolean switching_desks) } } -static void events(ObEvent *e, void *foo) +static void event(ObEvent *e, void *foo) { switch (e->type) { case Event_Client_Mapped: @@ -125,10 +125,10 @@ void plugin_startup() Event_Ob_Desktop | Event_Client_Unmapped | Event_X_EnterNotify, - (EventHandler)events, NULL); + (EventHandler)event, NULL); } void plugin_shutdown() { - dispatch_register(0, (EventHandler)events, NULL); + dispatch_register(0, (EventHandler)event, NULL); } |
