From 08114fa8aaacfe4115dc184635a25996f50e9823 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Sun, 21 Oct 2007 18:02:10 +0000 Subject: [PATCH] making funcs non-inline, adding a Flush method which will only be needed on mac at the moment git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@49295 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/dcgraph.h | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/include/wx/dcgraph.h b/include/wx/dcgraph.h index 9115ec0af4..dea6c8f7b7 100755 --- a/include/wx/dcgraph.h +++ b/include/wx/dcgraph.h @@ -50,11 +50,15 @@ public: virtual void Clear(); - virtual bool StartDoc( const wxString& WXUNUSED(message) ) { return true; } - virtual void EndDoc(void) {} + virtual bool StartDoc( const wxString& message ); + virtual void EndDoc(); - virtual void StartPage(void) {} - virtual void EndPage(void) {} + virtual void StartPage(); + virtual void EndPage(); + + // to be virtualized on next major + // flushing the content of this dc immediately onto screen + void Flush(); virtual void SetFont(const wxFont& font); virtual void SetPen(const wxPen& pen);