Rename imagelist to imaglist to match wx headers

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@69437 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2011-10-16 04:15:45 +00:00
parent 640f22a259
commit 8cc19047f3
2 changed files with 9 additions and 6 deletions

View File

@@ -111,7 +111,7 @@ INCLUDES = [ 'defs',
'withimage',
'bookctrl',
'notebook',
'imagelist',
'imaglist',
'splitter',
'collpane',
'statline',

View File

@@ -1,5 +1,5 @@
#---------------------------------------------------------------------------
# Name: etg/imagelist.py
# Name: etg/imaglist.py
# Author: Kevin Ollivier
#
# Created: 27-Aug-2011
@@ -12,14 +12,13 @@ import etgtools.tweaker_tools as tools
PACKAGE = "wx"
MODULE = "_core"
NAME = "imagelist" # Base name of the file to generate to for this script
NAME = "imaglist" # Base name of the file to generate to for this script
DOCSTRING = ""
# The classes and/or the basename of the Doxygen XML files to be processed by
# this script.
ITEMS = [
'wxImageList',
]
ITEMS = [ 'wxImageList',
]
#---------------------------------------------------------------------------
@@ -36,7 +35,11 @@ def run():
assert isinstance(c, etgtools.ClassDef)
c.addPrivateCopyCtor()
c.addPrivateAssignOp()
tools.removeVirtuals(c)
c.find('GetSize').type = 'void'
c.find('GetSize.width').out = True
c.find('GetSize.height').out = True
#-----------------------------------------------------------------
tools.doCommonTweaks(module)