Jacek Caban : mshtml: Added VT_I2 handling to debugstr_variant.

Alexandre Julliard julliard at winehq.org
Fri Jan 27 11:30:42 CST 2012


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

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Fri Jan 27 17:45:17 2012 +0100

mshtml: Added VT_I2 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 e82e8e2..c1dfd13 100644
--- a/dlls/mshtml/main.c
+++ b/dlls/mshtml/main.c
@@ -509,6 +509,8 @@ const char *debugstr_variant(const VARIANT *v)
         return "{VT_EMPTY}";
     case VT_NULL:
         return "{VT_NULL}";
+    case VT_I2:
+        return wine_dbg_sprintf("{VT_I2: %d}", V_I2(v));
     case VT_I4:
         return wine_dbg_sprintf("{VT_I4: %d}", V_I4(v));
     case VT_R8:




More information about the wine-cvs mailing list