------------------------------------------------------------ revno: 2444 committer: poy <[email protected]> branch nick: trunk timestamp: Fri 2011-02-25 18:52:51 +0100 message: fix comparison modified: dwt/src/Icon.cpp
-- lp:dcplusplus https://code.launchpad.net/~dcplusplus-team/dcplusplus/trunk Your team Dcplusplus-team is subscribed to branch lp:dcplusplus. To unsubscribe from this branch go to https://code.launchpad.net/~dcplusplus-team/dcplusplus/trunk/+edit-subscription
=== modified file 'dwt/src/Icon.cpp' --- dwt/src/Icon.cpp 2011-02-25 17:46:24 +0000 +++ dwt/src/Icon.cpp 2011-02-25 17:52:51 +0000 @@ -79,7 +79,7 @@ if(resId && rhs.resId) return resId == rhs.resId; - return HandleType(resId) == HandleType(rhs.resId); + return HandleType() == HandleType(rhs); } }
_______________________________________________ Mailing list: https://launchpad.net/~linuxdcpp-team Post to : [email protected] Unsubscribe : https://launchpad.net/~linuxdcpp-team More help : https://help.launchpad.net/ListHelp

