From: Dana Jansens Date: Fri, 26 Sep 2003 04:10:17 +0000 (+0000) Subject: remove debug print X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=7dc01bbee786b2c64b35f87d9f03c5f6a4b9c8bc;p=chaz%2Fopenbox remove debug print --- 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); } }