X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0ae3258d7ad2231d653c1f0d62e0e2952f1dfb5f..a3669332df65cfae18e7540a267bc3400a64aa09:/wxPython/config.py

diff --git a/wxPython/config.py b/wxPython/config.py
index 0188ea6fd0..c25ce4f35d 100644
--- a/wxPython/config.py
+++ b/wxPython/config.py
@@ -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))
                 
     
     #---------------------------------------------------------------------------