diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-07-10 16:29:40 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-07-10 16:29:40 +0000 |
| commit | d206303a9f0742ff330aebe8129d6044ade30a94 (patch) | |
| tree | 4e11397a099343e48d979d793eba497e8b3a1f66 /openbox/event.c | |
| parent | 33a2cdbeb90fa1d5017174abe4fc9c99257ea175 (diff) | |
prefixing for the dock. use ObDirection instead of dupliacting it in another enum for the dock's placement
Diffstat (limited to 'openbox/event.c')
| -rw-r--r-- | openbox/event.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/openbox/event.c b/openbox/event.c index 7c5ab11f..8acca386 100644 --- a/openbox/event.c +++ b/openbox/event.c @@ -38,8 +38,8 @@ static void event_process(XEvent *e); static void event_handle_root(XEvent *e); -static void event_handle_dock(Dock *s, XEvent *e); -static void event_handle_dockapp(DockApp *app, XEvent *e); +static void event_handle_dock(ObDock *s, XEvent *e); +static void event_handle_dockapp(ObDockApp *app, XEvent *e); static void event_handle_client(ObClient *c, XEvent *e); static void event_handle_menu(ObClient *c, XEvent *e); static void fd_event_handle(); @@ -468,8 +468,8 @@ static void event_process(XEvent *e) { Window window; ObClient *client = NULL; - Dock *dock = NULL; - DockApp *dockapp = NULL; + ObDock *dock = NULL; + ObDockApp *dockapp = NULL; Menu *menu = NULL; ObWindow *obwin = NULL; @@ -1145,7 +1145,7 @@ static void fd_event_handle() g_datalist_foreach(&fd_handler_list, fd_event_handle_foreach, NULL); } -static void event_handle_dock(Dock *s, XEvent *e) +static void event_handle_dock(ObDock *s, XEvent *e) { switch (e->type) { case ButtonPress: @@ -1160,7 +1160,7 @@ static void event_handle_dock(Dock *s, XEvent *e) } } -static void event_handle_dockapp(DockApp *app, XEvent *e) +static void event_handle_dockapp(ObDockApp *app, XEvent *e) { switch (e->type) { case MotionNotify: |
