]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/config.py
no longer need reverse renamers for the *Ptr classes
[wxWidgets.git] / wxPython / config.py
index 09e89eaf53d6c99fd5f0231674e35d6a012f64c9..c25ce4f35dadb5fbaf84619ff24ef20cc5a7ab48 100644 (file)
@@ -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))
                 
     
     #---------------------------------------------------------------------------