Eliminated a couple of warnings

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15538 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2002-05-13 10:11:13 +00:00
parent a1ea505561
commit 47366662de
2 changed files with 4 additions and 4 deletions

View File

@@ -379,7 +379,7 @@ void wxScrolledWindow::AdjustScrollbars()
if( m_hAdjust->value + m_hAdjust->page_size > m_hAdjust->upper )
{
m_hAdjust->value = m_hAdjust->upper - m_hAdjust->page_size;
m_targetWindow->ScrollWindow( (m_xScrollPosition - m_hAdjust->value) * m_xScrollPixelsPerLine, 0 );
m_targetWindow->ScrollWindow( (int) (m_xScrollPosition - m_hAdjust->value) * m_xScrollPixelsPerLine, 0 );
m_xScrollPosition = (int)m_hAdjust->value;
}
}
@@ -397,7 +397,7 @@ void wxScrolledWindow::AdjustScrollbars()
if( m_vAdjust->value + m_vAdjust->page_size > m_vAdjust->upper )
{
m_vAdjust->value = m_vAdjust->upper - m_vAdjust->page_size;
m_targetWindow->ScrollWindow( 0, (m_yScrollPosition - m_vAdjust->value) * m_yScrollPixelsPerLine );
m_targetWindow->ScrollWindow( 0, (int) (m_yScrollPosition - m_vAdjust->value) * m_yScrollPixelsPerLine );
m_yScrollPosition = (int)m_vAdjust->value;
}
}