diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-03-24 19:10:33 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-03-24 19:10:33 +0000 |
| commit | 2bdc37e9200bef650867d7b9b2a251327b922629 (patch) | |
| tree | 720073baa6a7ec0ddc3b77afe49fc6526a327c5a | |
| parent | 7567e3d7810985458634c9943a0a75539bdf7ce1 (diff) | |
double ptrs suck! yay shape!
| -rw-r--r-- | openbox/event.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/event.c b/openbox/event.c index 0088085b..1844e3f6 100644 --- a/openbox/event.c +++ b/openbox/event.c @@ -565,7 +565,7 @@ static void event_handle_client(Client *client, XEvent *e) ; #ifdef SHAPE if (extensions_shape && e->type == extensions_shape_event_basep) { - client->shaped = ((XShapeEvent*)&e)->shaped; + client->shaped = ((XShapeEvent*)e)->shaped; engine_frame_adjust_shape(client->frame); } #endif |
