a couple of terrible typos fixed
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6181 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
b0486e0dc3
commit
6d55126d0b
@ -2577,7 +2577,7 @@ void wxGrid::CalcRowLabelsExposed( wxRegion& reg )
|
||||
if ( GetRowBottom(row) < top )
|
||||
continue;
|
||||
|
||||
if ( GetRowTop(top) > bottom )
|
||||
if ( GetRowTop(row) > bottom )
|
||||
break;
|
||||
|
||||
m_rowLabelsExposed.Add( row );
|
||||
@ -4320,16 +4320,16 @@ void wxGrid::DrawAllGridLines( wxDC& dc, const wxRegion & reg )
|
||||
int i;
|
||||
for ( i = 0; i < m_numRows; i++ )
|
||||
{
|
||||
int bottom = GetRowBottom(i) - 1;
|
||||
int bot = GetRowBottom(i) - 1;
|
||||
|
||||
if ( bottom > bottom )
|
||||
if ( bot > bottom )
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
||||
if ( bottom >= top )
|
||||
if ( bot >= top )
|
||||
{
|
||||
dc.DrawLine( left, bottom, right, bottom );
|
||||
dc.DrawLine( left, bot, right, bot );
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user