diff options
| author | Dana Jansens <danakj@orodu.net> | 2010-02-12 13:44:10 -0500 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2010-02-12 13:44:10 -0500 |
| commit | 1d57f7b08590255e57dd5931a1993507b4f116c2 (patch) | |
| tree | dba966b4f8a58a21c37f73e47c692495e1a4448a /openbox/actions | |
| parent | 98c86118ca941d71c0c511c865d5913814012aed (diff) | |
using g_slice_new() instead of g_new() part 1
Diffstat (limited to 'openbox/actions')
| -rw-r--r-- | openbox/actions/moveresizeto.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/actions/moveresizeto.c b/openbox/actions/moveresizeto.c index f0472797..68b4c0b2 100644 --- a/openbox/actions/moveresizeto.c +++ b/openbox/actions/moveresizeto.c @@ -174,8 +174,8 @@ static gboolean run_func(ObActionsData *data, gpointer options) client_configure(c, x, y, w, h, TRUE, TRUE, FALSE); actions_client_move(data, FALSE); - g_free(area); - g_free(carea); + g_slice_free(Rect, area); + g_slice_free(Rect, carea); } return FALSE; |
