explorer: Fixed a typo in system tray.

This commit is contained in:
Andrew Riedi 2006-04-14 10:58:40 -07:00 committed by Alexandre Julliard
parent 097aec39ca
commit 58c61b5615

View file

@ -155,7 +155,7 @@ static struct icon *get_icon(HWND owner, UINT id)
/* search for the icon */
LIST_FOR_EACH_ENTRY( this, &tray.icons, struct icon, entry )
if ((this->id == id) && (this->owner = owner)) return this;
if ((this->id == id) && (this->owner == owner)) return this;
return NULL;
}