remove VC6 scoping hacks

This commit is contained in:
Chris Danford
2004-09-21 07:53:39 +00:00
parent f97eaed01d
commit 03fbb915f3
55 changed files with 162 additions and 266 deletions
+1 -2
View File
@@ -127,7 +127,6 @@ void BitmapText::BuildChars()
if(m_wTextLines.empty()) return;
m_size.y = float(m_pFont->GetHeight() * m_wTextLines.size());
unsigned i;
int MinSpacing = 0;
/* The height (from the origin to the baseline): */
@@ -145,7 +144,7 @@ void BitmapText::BuildChars()
default: ASSERT( false ); return;
}
for( i=0; i<m_wTextLines.size(); i++ ) // foreach line
for( unsigned i=0; i<m_wTextLines.size(); i++ ) // foreach line
{
iY += m_pFont->GetHeight();
const wstring &szLine = m_wTextLines[i];