Fix the SetFonts in HtmlEasyPrinting and HtmlPrintout too

This commit is contained in:
Robin Dunn
2017-04-24 12:23:53 -07:00
parent 7f1d93a3e7
commit c073d1be58
3 changed files with 8 additions and 1 deletions

View File

@@ -45,10 +45,12 @@ def run():
c = module.find('wxHtmlEasyPrinting')
c.mustHaveApp()
c.addPrivateCopyCtor()
tools.fixHtmlSetFonts(c)
c = module.find('wxHtmlPrintout')
c.mustHaveApp()
c.addPrivateCopyCtor()
tools.fixHtmlSetFonts(c)
#-----------------------------------------------------------------