fix g++ warnings for float->int conversions
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59961 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
c7928d82c2
commit
7ff1542d27
@ -289,9 +289,9 @@ void wxHtmlPrintout::OnPreparePrinting()
|
||||
const int printAreaW = int(ppmm_h * (mm_w - m_MarginLeft - m_MarginRight));
|
||||
int printAreaH = int(ppmm_v * (mm_h - m_MarginTop - m_MarginBottom));
|
||||
if ( m_HeaderHeight )
|
||||
printAreaH -= m_HeaderHeight + m_MarginSpace * ppmm_v;
|
||||
printAreaH -= int(m_HeaderHeight + m_MarginSpace * ppmm_v);
|
||||
if ( m_FooterHeight )
|
||||
printAreaH -= m_FooterHeight + m_MarginSpace * ppmm_v;
|
||||
printAreaH -= int(m_FooterHeight + m_MarginSpace * ppmm_v);
|
||||
|
||||
m_Renderer->SetSize(printAreaW, printAreaH);
|
||||
m_Renderer->SetHtmlText(m_Document, m_BasePath, m_BasePathIsDir);
|
||||
|
Loading…
Reference in New Issue
Block a user