Correct test for missing value.

SVN revision: 28338
This commit is contained in:
Sebastian Dransfeld 2007-02-13 03:06:50 +00:00
parent cf0cf7ee2f
commit d0e3a150b5
1 changed files with 1 additions and 2 deletions

View File

@ -1277,9 +1277,8 @@ e_app_border_find(E_Border *bd)
char *title;
double begin, time, clever_time = 0.0;
/* FIXME: Should that be (bd->client.netwm.name) or (!bd->client.netwm.name) like everything else ? */
if ((!bd->client.icccm.name) && (!bd->client.icccm.class) &&
(!bd->client.icccm.title) && (bd->client.netwm.name) &&
(!bd->client.icccm.title) && (!bd->client.netwm.name) &&
(!bd->client.icccm.window_role) && (!bd->client.icccm.command.argv))
return NULL;