git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64021
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
wxDateTime testTime = wxDateTime::Now();
any = testTime;
prop->SetValue(any);
wxDateTime testTime = wxDateTime::Now();
any = testTime;
prop->SetValue(any);
- if ( prop->GetValue().GetAny().As<wxDateTime>() != testTime )
+ if ( wxANY_AS(prop->GetValue().GetAny(), wxDateTime) != testTime )
int testInt = 25537983;
any = testInt;
prop->SetValue(any);
int testInt = 25537983;
any = testInt;
prop->SetValue(any);
- if ( prop->GetValue().GetAny().As<int>() != testInt )
+ if ( wxANY_AS(prop->GetValue().GetAny(), int) != testInt )
RT_FAILURE();
#ifdef wxLongLong_t
RT_FAILURE();
#ifdef wxLongLong_t
- if ( prop->GetValue().GetAny().As<wxLongLong_t>() != testInt )
+ if ( wxANY_AS(prop->GetValue().GetAny(), wxLongLong_t) != testInt )
wxString testString = "asd934jfyn3";
any = testString;
prop->SetValue(any);
wxString testString = "asd934jfyn3";
any = testString;
prop->SetValue(any);
- if ( prop->GetValue().GetAny().As<wxString>() != testString )
+ if ( wxANY_AS(prop->GetValue().GetAny(), wxString) != testString )
RT_FAILURE();
// Test with a type generated with IMPLEMENT_VARIANT_OBJECT()
RT_FAILURE();
// Test with a type generated with IMPLEMENT_VARIANT_OBJECT()
wxColour testCol = *wxCYAN;
any = testCol;
prop->SetValue(any);
wxColour testCol = *wxCYAN;
any = testCol;
prop->SetValue(any);
- if ( prop->GetValue().GetAny().As<wxColour>() != testCol )
+ if ( wxANY_AS(prop->GetValue().GetAny(), wxColour) != testCol )
RT_FAILURE();
// Test with a type with custom wxVariantData defined by
RT_FAILURE();
// Test with a type with custom wxVariantData defined by
wxPoint testPoint(199, 199);
any = testPoint;
prop->SetValue(any);
wxPoint testPoint(199, 199);
any = testPoint;
prop->SetValue(any);
- if ( prop->GetValue().GetAny().As<wxPoint>() != testPoint )
+ if ( wxANY_AS(prop->GetValue().GetAny(), wxPoint) != testPoint )