From: Robin Dunn Date: Mon, 28 Jun 2004 19:22:33 +0000 (+0000) Subject: Add flush() to PyOnDemandOutputWindow X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f454e36230616babf19866effc05765e5b00e64a Add flush() to PyOnDemandOutputWindow git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28056 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/src/_app_ex.py b/wxPython/src/_app_ex.py index f70c78c26f..feb4b95715 100644 --- a/wxPython/src/_app_ex.py +++ b/wxPython/src/_app_ex.py @@ -60,6 +60,10 @@ class PyOnDemandOutputWindow: wx.CallAfter(self.frame.Close) + def flush(self): + pass + + #----------------------------------------------------------------------