mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-05 11:30:06 +01:00
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:
@@ -111,7 +111,7 @@ INCLUDES = [ 'defs',
|
||||
'withimage',
|
||||
'bookctrl',
|
||||
'notebook',
|
||||
'imagelist',
|
||||
'imaglist',
|
||||
'splitter',
|
||||
'collpane',
|
||||
'statline',
|
||||
|
||||
@@ -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)
|
||||
Reference in New Issue
Block a user