From 8dba98cdc328ab438a4ee7fcbbbc954d161c33cf Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Thu, 14 May 2020 16:52:16 -0700 Subject: [PATCH] Remove now unneeded tweak for the wxFontInfo ctor --- etg/font.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/etg/font.py b/etg/font.py index af42778c..02f13b55 100644 --- a/etg/font.py +++ b/etg/font.py @@ -35,8 +35,6 @@ def run(): c = module.find('wxFontInfo') assert isinstance(c, etgtools.ClassDef) - ctor = c.find('wxFontInfo').findOverload('T pointSize') - ctor.find('pointSize').type = 'float' c = module.find('wxFont') assert isinstance(c, etgtools.ClassDef)