From b1cf23dc26386e0c79c83ce47d5f3f703b397586 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Thu, 24 Jun 1999 20:02:25 +0000 Subject: [PATCH] Printout object is now calling base class virtuals where needed... git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2887 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- utils/wxPython/demo/PrintFramework.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/utils/wxPython/demo/PrintFramework.py b/utils/wxPython/demo/PrintFramework.py index e4fd624368..133d6270d8 100644 --- a/utils/wxPython/demo/PrintFramework.py +++ b/utils/wxPython/demo/PrintFramework.py @@ -17,15 +17,19 @@ class MyPrintout(wxPrintout): def OnEndDocument(self): self.log.WriteText("wxPrintout.OnEndDocument\n") + self.base_OnEndDocument() def OnBeginPrinting(self): self.log.WriteText("wxPrintout.OnBeginPrinting\n") + self.base_OnBeginPrinting() def OnEndPrinting(self): self.log.WriteText("wxPrintout.OnEndPrinting\n") + self.base_OnEndPrinting() def OnPreparePrinting(self): self.log.WriteText("wxPrintout.OnPreparePrinting\n") + self.base_OnPreparePrinting() def HasPage(self, page): self.log.WriteText("wxPrintout.HasPage\n") -- 2.50.0