Module: wine Branch: refs/heads/master Commit: 58c61b5615854f0c36e97be96883c4e547db64a5 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=58c61b5615854f0c36e97be9...
Author: Andrew Riedi andrewriedi@gmail.com Date: Fri Apr 14 10:58:40 2006 -0700
explorer: Fixed a typo in system tray.
---
programs/explorer/systray.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/programs/explorer/systray.c b/programs/explorer/systray.c index 00036ff..48c29cb 100644 --- a/programs/explorer/systray.c +++ b/programs/explorer/systray.c @@ -155,7 +155,7 @@ static struct icon *get_icon(HWND owner,
/* 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; }