X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ace78e271b95dc9eb6f72b475a9665847a60ae38..a3669332df65cfae18e7540a267bc3400a64aa09:/wxPython/config.py diff --git a/wxPython/config.py b/wxPython/config.py index 09e89eaf53..c25ce4f35d 100644 --- a/wxPython/config.py +++ b/wxPython/config.py @@ -903,6 +903,7 @@ if USE_SWIG: '-fvirtual', '-fastinit', '-fastunpack', + #'-outputtuple', Currently setting this with a -D define above ] if UNICODE: @@ -1050,7 +1051,6 @@ class BuildRenamers: # do a depth first iteration over what's left for node in topnode: doRename = False - doPtr = False addWX = False revOnly = False @@ -1059,7 +1059,6 @@ class BuildRenamers: lastClassName = name = self.GetAttr(node, "name") lastClassSymName = sym_name = self.GetAttr(node, "sym_name") doRename = True - doPtr = True if sym_name != name: name = sym_name addWX = True @@ -1117,8 +1116,6 @@ class BuildRenamers: if addWX and not old.startswith('wx'): old = 'wx'+old pyFile.write("%s = wx.%s.%s\n" % (old, modname, new)) - if doPtr: - pyFile.write("%sPtr = wx.%s.%sPtr\n" % (old, modname, new)) #---------------------------------------------------------------------------