Removed some outdated compiler checks in OLE code.

We don't support VC++ 4 for ages and any recent version of GCC has
cVal, too.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63045 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2010-01-03 18:29:09 +00:00
parent 1fbfbfb0bf
commit 7f362a98cc

View File

@@ -148,14 +148,11 @@ WXDLLEXPORT bool wxConvertVariantToOle(const wxVariant& variant, VARIANTARG& ole
oleVariant.vt = VT_I4; oleVariant.vt = VT_I4;
oleVariant.lVal = variant.GetLong() ; oleVariant.lVal = variant.GetLong() ;
} }
// cVal not always present
#ifndef __GNUWIN32__
else if (type == wxT("char")) else if (type == wxT("char"))
{ {
oleVariant.vt=VT_I1; // Signed Char oleVariant.vt=VT_I1; // Signed Char
oleVariant.cVal=variant.GetChar(); oleVariant.cVal=variant.GetChar();
} }
#endif
else if (type == wxT("double")) else if (type == wxT("double"))
{ {
oleVariant.vt = VT_R8; oleVariant.vt = VT_R8;
@@ -164,12 +161,7 @@ WXDLLEXPORT bool wxConvertVariantToOle(const wxVariant& variant, VARIANTARG& ole
else if (type == wxT("bool")) else if (type == wxT("bool"))
{ {
oleVariant.vt = VT_BOOL; oleVariant.vt = VT_BOOL;
// 'bool' required for VC++ 4 apparently
#if (defined(__VISUALC__) && (__VISUALC__ <= 1000))
oleVariant.bool = variant.GetBool();
#else
oleVariant.boolVal = variant.GetBool(); oleVariant.boolVal = variant.GetBool();
#endif
} }
else if (type == wxT("string")) else if (type == wxT("string"))
{ {