From ca71c6bf10f2794486cf27b8bc682d85aab4bfb8 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Tue, 23 Oct 2007 21:30:28 +0000 Subject: [PATCH] Avoid compile error and return a value from StartDoc git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@49369 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/dcgraph.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/common/dcgraph.cpp b/src/common/dcgraph.cpp index 8fe9f259e5..b95e1af0a4 100644 --- a/src/common/dcgraph.cpp +++ b/src/common/dcgraph.cpp @@ -142,7 +142,8 @@ void wxGCDC::DoDrawIcon( const wxIcon &icon, wxCoord x, wxCoord y ) } bool wxGCDC::StartDoc( const wxString& WXUNUSED(message) ) -{ +{ + return false; } void wxGCDC::EndDoc()