From 75fcd3dcc10238258cf62e757400b7bdc665a761 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Tue, 7 Dec 2010 02:55:22 +0000 Subject: [PATCH] Add the pyInt annotation to some character typdefs git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@66347 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- etg/defs.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/etg/defs.py b/etg/defs.py index fccbc580..7023f3dc 100644 --- a/etg/defs.py +++ b/etg/defs.py @@ -36,6 +36,10 @@ def run(): module.find('wxUint64').type = 'unsigned long long' module.find('wxIntPtr').type = 'long' #'ssize_t' module.find('wxUIntPtr').type = 'unsigned long' #'size_t' + module.find('wxInt8').pyInt = True + module.find('wxUint8').pyInt = True + module.find('wxByte').pyInt = True + module.find('wxDELETE').ignore() module.find('wxDELETEA').ignore() @@ -63,7 +67,8 @@ def run(): class wxAcceleratorTable; class wxDropTarget; class wxCaret; - + class wxIcon; + class wxIconBundle; """))