Jacek Caban : mshtml: Added VT_UINT handling to debugstr_variant.

Alexandre Julliard julliard at winehq.org
Thu Jul 23 10:01:40 CDT 2009


Module: wine
Branch: master
Commit: 57f23b875c630a30d8554d13df387e2cae29d641
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=57f23b875c630a30d8554d13df387e2cae29d641

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Thu Jul 23 15:25:38 2009 +0200

mshtml: Added VT_UINT handling to debugstr_variant.

---

 dlls/mshtml/main.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/dlls/mshtml/main.c b/dlls/mshtml/main.c
index 3057276..548c50c 100644
--- a/dlls/mshtml/main.c
+++ b/dlls/mshtml/main.c
@@ -433,6 +433,8 @@ const char *debugstr_variant(const VARIANT *v)
         return wine_dbg_sprintf("{VT_DISPATCH: %p}", V_DISPATCH(v));
     case VT_BOOL:
         return wine_dbg_sprintf("{VT_BOOL: %x}", V_BOOL(v));
+    case VT_UINT:
+        return wine_dbg_sprintf("{VT_UINT: %u}", V_UINT(v));
     default:
         return wine_dbg_sprintf("{vt %d}", V_VT(v));
     }




More information about the wine-cvs mailing list