summaryrefslogtreecommitdiff
path: root/openbox/moveresize.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-05-13 07:45:15 +0000
committerDana Jansens <danakj@orodu.net>2007-05-13 07:45:15 +0000
commitacfa2af3c2eacd099869cc5aebdcfa1241214e8b (patch)
treea31d4c4a3f778e7d9eca1f0207733141b4fb09e9 /openbox/moveresize.c
parent9f22554b6a1e7113b4ff86061327d9d0b0d87760 (diff)
use the right list in client_add_hide_notify, rename destructor to destroy_notify which is really what it is, and is more consistant now that there are 2 notifies
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 6a1e2354..ac51f8b6 100644
--- a/openbox/moveresize.c
+++ b/openbox/moveresize.c
@@ -70,7 +70,7 @@ void moveresize_startup(gboolean reconfig)
popup = popup_new(FALSE);
if (!reconfig)
- client_add_destructor(client_dest, NULL);
+ client_add_destroy_notify(client_dest, NULL);
}
void moveresize_shutdown(gboolean reconfig)
@@ -78,7 +78,7 @@ void moveresize_shutdown(gboolean reconfig)
if (!reconfig) {
if (moveresize_in_progress)
moveresize_end(FALSE);
- client_remove_destructor(client_dest);
+ client_remove_destroy_notify(client_dest);
}
popup_free(popup);