missed a g_free() that should be g_slice_free()

This commit is contained in:
Dana Jansens 2010-02-16 16:04:47 -05:00
parent 343ca097f7
commit d45af3cb45

View file

@ -702,7 +702,7 @@ void client_fake_unmanage(ObClient *self)
/* this is all that got allocated to get the decorations */
frame_free(self->frame);
g_free(self);
g_slice_free(ObClient, self);
}
static gboolean client_can_steal_focus(ObClient *self, Time steal_time,