All elements must be NULL if we're not going to check.

SVN revision: 16632
This commit is contained in:
sebastid 2005-09-07 01:15:40 +00:00 committed by sebastid
parent 8d6a51beea
commit 50ffcee9df
1 changed files with 1 additions and 1 deletions

View File

@ -525,7 +525,7 @@ e_app_window_name_class_title_role_find(const char *name, const char *class,
{
Evas_List *l;
if (!name && !class)
if ((!name) && (!class) && (!title) && (!role))
return NULL;
for (l = _e_apps_list; l; l = l->next)