no longer need reverse renamers for the *Ptr classes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38302 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-03-23 15:56:22 +00:00
parent 0b652e0ef9
commit 6cfc5ebfa7
17 changed files with 0 additions and 432 deletions

View File

@@ -1051,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
@@ -1060,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
@@ -1118,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))
#---------------------------------------------------------------------------