From: Vadim Zeitlin Date: Thu, 24 Jul 2003 00:42:29 +0000 (+0000) Subject: fix some warnings X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/8b58d2df626f1652681dba52214975199586d727 fix some warnings git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22266 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/prntbase.cpp b/src/common/prntbase.cpp index ee3ec90dad..8b94982154 100644 --- a/src/common/prntbase.cpp +++ b/src/common/prntbase.cpp @@ -737,8 +737,8 @@ void wxPrintPreviewBase::AdjustScrollbars(wxPreviewCanvas *canvas) double actualHeight = (zoomScale*m_pageHeight*m_previewScale); // Set the scrollbars appropriately - int totalWidth = actualWidth + 2*m_leftMargin; - int totalHeight = actualHeight + 2*m_topMargin; + int totalWidth = (int)(actualWidth + 2*m_leftMargin); + int totalHeight = (int)(actualHeight + 2*m_topMargin); int scrollUnitsX = totalWidth/10; int scrollUnitsY = totalHeight/10; wxSize virtualSize = canvas->GetVirtualSize();