From 3df175ec481cb9a27f69bb4f1234fca8a2420f1a Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Tue, 29 Aug 2017 19:46:55 -0700 Subject: [PATCH] Keep the base virtuals, just exclude the ones from wxDataObjectSimple --- etg/dataobj.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/etg/dataobj.py b/etg/dataobj.py index 425c71ad..3d2e04f8 100644 --- a/etg/dataobj.py +++ b/etg/dataobj.py @@ -376,12 +376,12 @@ def run(): c.bases = ['wxDataObject'] addGetAllFormats(c) + addBaseVirtuals(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) + # in the base classes. For now just ignore them for this class. If + # they really are needed then something more creative will need to + # be done. #addSimpleVirtuals(c)