Commit 58c61b56 authored by Andrew Riedi's avatar Andrew Riedi Committed by Alexandre Julliard

explorer: Fixed a typo in system tray.

parent 097aec39
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment