From 26dfebbd6c1349b82c2fe80a71629caf065c646d Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Tue, 18 Dec 2007 15:11:15 +0000 Subject: [PATCH] starting a doc must return true in order for printpreview to work git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50807 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/dcgraph.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/dcgraph.cpp b/src/common/dcgraph.cpp index d6e6112d96..c945600de4 100644 --- a/src/common/dcgraph.cpp +++ b/src/common/dcgraph.cpp @@ -176,7 +176,7 @@ void wxGCDCImpl::DoDrawIcon( const wxIcon &icon, wxCoord x, wxCoord y ) bool wxGCDCImpl::StartDoc( const wxString& WXUNUSED(message) ) { - return false; + return true; } void wxGCDCImpl::EndDoc() -- 2.47.2