compilation fix for the last check in

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39083 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-05-06 20:32:46 +00:00
parent 7c55c50ea9
commit c23d400420

View File

@@ -292,7 +292,7 @@ bool wxNativeFontInfo::FromString(const wxString& s)
wxString sizeStr;
if ( size < 1 )
sizeStr = _T("1");
else if ( n >= 1E6 )
else if ( size >= 1E6 )
sizeStr = _T("1E6");
if ( !sizeStr.empty() )