rename event() to place_event()
This commit is contained in:
parent
3904699688
commit
6216c4be17
1 changed files with 2 additions and 2 deletions
|
@ -31,7 +31,7 @@ void place_random(Client *c)
|
|||
TRUE, TRUE);
|
||||
}
|
||||
|
||||
void event(ObEvent *e, void *foo)
|
||||
void place_event(ObEvent *e, void *foo)
|
||||
{
|
||||
g_assert(e->type == Event_Client_New);
|
||||
|
||||
|
@ -43,7 +43,7 @@ void event(ObEvent *e, void *foo)
|
|||
|
||||
void plugin_startup()
|
||||
{
|
||||
dispatch_register(Event_Client_New, (EventHandler)event, NULL);
|
||||
dispatch_register(Event_Client_New, (EventHandler)place_event, NULL);
|
||||
|
||||
history_startup();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue