Don't add the common virtuals for wxURLDataObject.

It's complicated parentage causes build problems in some cases.
This commit is contained in:
Robin Dunn
2017-08-29 19:21:48 -07:00
parent b037c4e7cb
commit c0654d6957

View File

@@ -376,8 +376,13 @@ def run():
c.bases = ['wxDataObject']
addGetAllFormats(c)
addBaseVirtuals(c)
addSimpleVirtuals(c)
# It also causes mismatches regarding what virtuals are available
# in the base classes. For now just ignore them for this class, if
# they are needed then something more creative will need to be
# done.
#addBaseVirtuals(c)
#addSimpleVirtuals(c)
#------------------------------------------------------------