explorer: Fixed a typo in system tray.

oldstable
Andrew Riedi 2006-04-14 10:58:40 -07:00 committed by Alexandre Julliard
parent 097aec39ca
commit 58c61b5615
1 changed files with 1 additions and 1 deletions

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;
}