summaryrefslogtreecommitdiff
path: root/openbox
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-09-26 04:10:17 +0000
committerDana Jansens <danakj@orodu.net>2003-09-26 04:10:17 +0000
commit7dc01bbee786b2c64b35f87d9f03c5f6a4b9c8bc (patch)
tree9a2b9cc85080c53ea35b89ca880b861e3d8bf5f2 /openbox
parent40d58a1e34433c87a81d558cbc2623c6e1ff7053 (diff)
remove debug print
Diffstat (limited to 'openbox')
-rw-r--r--openbox/client.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/openbox/client.c b/openbox/client.c
index 80773f6c..28405c13 100644
--- a/openbox/client.c
+++ b/openbox/client.c
@@ -1310,16 +1310,14 @@ void client_update_wmhints(ObClient *self)
/* the WM_HINTS can contain an icon */
client_update_icons(self);
- XFree(hints);
+ XFree(hints);
}
if (ur != self->urgent) {
- self->urgent = ur;
- ob_debug("Urgent Hint for 0x%lx: %s\n", self->window,
- ur ? "ON" : "OFF");
- /* fire the urgent callback if we're mapped, otherwise, wait until
- after we're mapped */
- if (self->frame)
+ self->urgent = ur;
+ /* fire the urgent callback if we're mapped, otherwise, wait until
+ after we're mapped */
+ if (self->frame)
client_urgent_notify(self);
}
}