]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/variant.cpp
Reorganize wxCollapsiblePane event and layout code under GTK+
[wxWidgets.git] / src / common / variant.cpp
index 6d67625a5f8a5a0d36d819fe8079d6af7e487f93..627edfbef604c42ad8cfd7bbae749eebaf28189c 100644 (file)
@@ -1182,7 +1182,11 @@ void wxVariant::operator= (void* value)
 
 void* wxVariant::GetVoidPtr() const
 {
-    wxASSERT( (GetType() == wxT("void*")) );
+    // handling this specially is convenient when working with COM, see #9873
+    if ( IsNull() )
+        return NULL;
+
+    wxASSERT( GetType() == wxT("void*") );
 
     return (void*) ((wxVariantDataVoidPtr*) m_data)->GetValue();
 }