fix warning about unused variable in release build by using standard wxLogLastError() if StartDoc() fails instead of duplicating it here
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44505 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -193,15 +193,13 @@ bool wxPrinterDC::StartDoc(const wxString& message)
|
||||
if (!m_hDC)
|
||||
return false;
|
||||
|
||||
int ret = ::StartDoc(GetHdc(), &docinfo);
|
||||
|
||||
if (ret <= 0)
|
||||
if ( ::StartDoc(GetHdc(), &docinfo) < 0 )
|
||||
{
|
||||
DWORD lastError = GetLastError();
|
||||
wxLogDebug(wxT("wxDC::StartDoc failed with error: %ld\n"), lastError);
|
||||
wxLogLastError(wxT("StartDoc"));
|
||||
return false;
|
||||
}
|
||||
|
||||
return (ret > 0);
|
||||
return true;
|
||||
}
|
||||
|
||||
void wxPrinterDC::EndDoc()
|
||||
|
Reference in New Issue
Block a user