]> git.saurik.com Git - wxWidgets.git/commitdiff
Try a blind fix for VC6 compilation issues (wxAny ctor has become too ambiguous now...
authorJaakko Salli <jaakko.salli@dnainternet.net>
Fri, 16 Apr 2010 15:34:46 +0000 (15:34 +0000)
committerJaakko Salli <jaakko.salli@dnainternet.net>
Fri, 16 Apr 2010 15:34:46 +0000 (15:34 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64002 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/variant.cpp

index 81117ab99bcb2c94819ff2b83978bb4bde3f18c9..86c60ec187fe78c0516c11f31f173af40853d360 100644 (file)
@@ -221,17 +221,18 @@ wxVariant::wxVariant(const wxAny& any)
 
 wxAny wxVariant::GetAny() const
 {
+    wxAny any;
+
     if ( IsNull() )
-        return wxAny();
+        return wxAny((const wxAny&)any);
 
     wxVariantData* data = GetData();
-    wxAny any;
 
     if ( data->GetAsAny(&any) )
-        return any;
+        return wxAny((const wxAny&)any);
 
     // If everything else fails, wrap the whole wxVariantData
-    return wxAny(data);
+    return wxAny(((wxVariantData*)data));
 }
 
 #endif // wxUSE_ANY
@@ -1946,7 +1947,7 @@ bool wxVariantDataList::GetAsAny(wxAny* any) const
     while (node)
     {
         wxVariant* pVar = node->GetData();
-        dst.push_back(new wxAny(*pVar));
+        dst.push_back(new wxAny(((const wxVariant&)*pVar)));
         node = node->GetNext();
     }