You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2009/09/01 17:50:10 UTC

svn commit: r810102 - /commons/sandbox/runtime/trunk/src/main/native/os/win32/variant.cpp

Author: mturk
Date: Tue Sep  1 15:50:10 2009
New Revision: 810102

URL: http://svn.apache.org/viewvc?rev=810102&view=rev
Log:
Use new name for basic pointer

Modified:
    commons/sandbox/runtime/trunk/src/main/native/os/win32/variant.cpp

Modified: commons/sandbox/runtime/trunk/src/main/native/os/win32/variant.cpp
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/os/win32/variant.cpp?rev=810102&r1=810101&r2=810102&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/os/win32/variant.cpp (original)
+++ commons/sandbox/runtime/trunk/src/main/native/os/win32/variant.cpp Tue Sep  1 15:50:10 2009
@@ -48,7 +48,7 @@
     if (!v)
         return 0;
     VariantInit(v);
-    return ACR_NewPointer(_E, v, 0, variant_callback);
+    return ACR_NewBasicPointer(_E, v, 0, variant_callback);
 }
 
 extern "C"
@@ -64,7 +64,7 @@
         VariantInit(v);
         V_VT(v)   = VT_BSTR;
         V_BSTR(v) = SysAllocString(J2W(str));
-        r = ACR_NewPointer(_E, v, 0, variant_callback);
+        r = ACR_NewBasicPointer(_E, v, 0, variant_callback);
     } END_WITH_WSTR(str);
 
     return r;