summaryrefslogtreecommitdiff
path: root/openbox/client.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-05-16 21:34:00 +0000
committerDana Jansens <danakj@orodu.net>2003-05-16 21:34:00 +0000
commit0b5f6589ba42869d4d1bdac61b3128dbc762424d (patch)
tree8804ff4f4abef392f18cbff2f4916eaf5ca6e598 /openbox/client.c
parentf8bbe46bce7597304d10d106ae51af43af88ca66 (diff)
print the class not the name
Diffstat (limited to 'openbox/client.c')
-rw-r--r--openbox/client.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/client.c b/openbox/client.c
index 77bf98fd..abc9a1e3 100644
--- a/openbox/client.c
+++ b/openbox/client.c
@@ -301,7 +301,7 @@ void client_manage(Window window)
dispatch_client(Event_Client_Mapped, self, 0, 0);
- g_message("Managed window 0x%lx (%s)", window, self->name);
+ g_message("Managed window 0x%lx (%s)", window, self->class);
}
void client_unmanage_all()
@@ -315,7 +315,7 @@ void client_unmanage(Client *self)
int j;
GSList *it;
- g_message("Unmanaging window: %lx (%s)", self->window, self->name);
+ g_message("Unmanaging window: %lx (%s)", self->window, self->class);
dispatch_client(Event_Client_Destroy, self, 0, 0);
g_assert(self != NULL);