Module: wine Branch: master Commit: 077e9d8945af1c743999dcf8328c9f8912278319 URL: http://source.winehq.org/git/wine.git/?a=commit;h=077e9d8945af1c743999dcf832...
Author: Alistair Leslie-Hughes leslie_alistair@hotmail.com Date: Tue Mar 4 21:15:17 2008 +1100
msxml3: Remove Byte since it's not a valid datatype.
---
dlls/msxml3/node.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/dlls/msxml3/node.c b/dlls/msxml3/node.c index 72eb9c3..0bff8e9 100644 --- a/dlls/msxml3/node.c +++ b/dlls/msxml3/node.c @@ -51,7 +51,6 @@ static const WCHAR szDate[] = {'D','a','t','e',0}; static const WCHAR szTime[] = {'T','i','m','e',0}; static const WCHAR szTimeTZ[] = {'T','i','m','e','.','t','z',0}; static const WCHAR szI1[] = {'i','1',0}; -static const WCHAR szByte[] = {'B','y','t','e',0}; static const WCHAR szI2[] = {'i','2',0}; static const WCHAR szI4[] = {'i','4',0}; static const WCHAR szIU1[] = {'u','i','1',0}; @@ -940,7 +939,6 @@ static HRESULT WINAPI xmlnode_put_dataType( lstrcmpiW(dataTypeName,szTime) == 0 || lstrcmpiW(dataTypeName,szTimeTZ) == 0 || lstrcmpiW(dataTypeName,szI1) == 0 || - lstrcmpiW(dataTypeName,szByte) == 0 || lstrcmpiW(dataTypeName,szI2) == 0 || lstrcmpiW(dataTypeName,szIU1) == 0 || lstrcmpiW(dataTypeName,szIU2) == 0 ||