Just map VT_I8 to wxLongLong.
Closes #14210.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71196
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
- Implement wxGraphicsContext::SetInterpolationQuality() (Eric Jensen).
- Fix coordinate handling in wxDC::Blit() when source DC is a DIB.
- Fix handling of composite windows in wxToolTip (Armel Asselin).
+- Add VT_I8 support to wxAutomationObject (PB).
OSX:
oleVariant.vt = VT_I4;
oleVariant.lVal = variant.GetLong() ;
}
+#if wxUSE_LONGLONG
+ else if (type == wxT("longlong"))
+ {
+ oleVariant.vt = VT_I8;
+ oleVariant.llVal = variant.GetLongLong().GetValue();
+ }
+#endif
else if (type == wxT("char"))
{
oleVariant.vt=VT_I1; // Signed Char
#endif // wxUSE_DATETIME
break;
+#if wxUSE_LONGLONG
+ case VT_I8:
+ variant = wxLongLong(oleVariant.llVal);
+ break;
+#endif // wxUSE_LONGLONG
+
case VT_I4:
variant = (long) oleVariant.lVal;
break;