mshtml: Implement IHTMLStyle get/put posLeft (try 8)

Jacek Caban jacek at codeweavers.com
Thu Nov 6 14:00:23 CST 2008


Alistair Leslie-Hughes wrote:
> Hi,
>    Made functions for get/set.
>
> Changelog:
>     mshtml: Implement IHTMLStyle get/put posLeft

+            for(ptr=value; isdigitW(*ptr); ptr++)
+            {
+                if(*ptr && !strcmpW(ptr, pxW)) {



This if expression will never be true. You should move it after for loop 
and change !strcmpW to strcmpW.


Jacek



More information about the wine-devel mailing list