fix some warnings

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22266 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2003-07-24 00:42:29 +00:00
parent 3ef86e32dd
commit 8b58d2df62

View File

@@ -737,8 +737,8 @@ void wxPrintPreviewBase::AdjustScrollbars(wxPreviewCanvas *canvas)
double actualHeight = (zoomScale*m_pageHeight*m_previewScale); double actualHeight = (zoomScale*m_pageHeight*m_previewScale);
// Set the scrollbars appropriately // Set the scrollbars appropriately
int totalWidth = actualWidth + 2*m_leftMargin; int totalWidth = (int)(actualWidth + 2*m_leftMargin);
int totalHeight = actualHeight + 2*m_topMargin; int totalHeight = (int)(actualHeight + 2*m_topMargin);
int scrollUnitsX = totalWidth/10; int scrollUnitsX = totalWidth/10;
int scrollUnitsY = totalHeight/10; int scrollUnitsY = totalHeight/10;
wxSize virtualSize = canvas->GetVirtualSize(); wxSize virtualSize = canvas->GetVirtualSize();