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:
Vadim Zeitlin 2000-02-21 17:25:43 +00:00
parent b0486e0dc3
commit 6d55126d0b

View File

@ -2577,7 +2577,7 @@ void wxGrid::CalcRowLabelsExposed( wxRegion& reg )
if ( GetRowBottom(row) < top ) if ( GetRowBottom(row) < top )
continue; continue;
if ( GetRowTop(top) > bottom ) if ( GetRowTop(row) > bottom )
break; break;
m_rowLabelsExposed.Add( row ); m_rowLabelsExposed.Add( row );
@ -4320,16 +4320,16 @@ void wxGrid::DrawAllGridLines( wxDC& dc, const wxRegion & reg )
int i; int i;
for ( i = 0; i < m_numRows; 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; break;
} }
if ( bottom >= top ) if ( bot >= top )
{ {
dc.DrawLine( left, bottom, right, bottom ); dc.DrawLine( left, bot, right, bot );
} }
} }