summaryrefslogtreecommitdiff
path: root/openbox/moveresize.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-09-03 08:10:51 +0000
committerDana Jansens <danakj@orodu.net>2003-09-03 08:10:51 +0000
commit5e5fdb1666ac4877ca4d26f5ca565a299bc4cc42 (patch)
tree2c2cee4f1530a9099727e8475e0d43421e066904 /openbox/moveresize.c
parent2573b51904e04f366ba4f6b858caa2471cdcb53f (diff)
make the client destructor a GDestroyNotify
Diffstat (limited to 'openbox/moveresize.c')
-rw-r--r--openbox/moveresize.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/moveresize.c b/openbox/moveresize.c
index 95e59587..82a9dec8 100644
--- a/openbox/moveresize.c
+++ b/openbox/moveresize.c
@@ -28,9 +28,9 @@ static ObCorner lockcorner;
static Popup *popup = NULL;
-static void client_dest(ObClient *c)
+static void client_dest(gpointer client)
{
- if (moveresize_client == c)
+ if (moveresize_client == client)
moveresize_end(TRUE);
}