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