print the class not the name
This commit is contained in:
parent
f8bbe46bce
commit
0b5f6589ba
1 changed files with 2 additions and 2 deletions
|
@ -301,7 +301,7 @@ void client_manage(Window window)
|
||||||
|
|
||||||
dispatch_client(Event_Client_Mapped, self, 0, 0);
|
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()
|
void client_unmanage_all()
|
||||||
|
@ -315,7 +315,7 @@ void client_unmanage(Client *self)
|
||||||
int j;
|
int j;
|
||||||
GSList *it;
|
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);
|
dispatch_client(Event_Client_Destroy, self, 0, 0);
|
||||||
g_assert(self != NULL);
|
g_assert(self != NULL);
|
||||||
|
|
Loading…
Reference in a new issue