Revert. Fixes Linux build.

This commit is contained in:
Steve Checkoway
2006-07-18 05:51:37 +00:00
parent 61739160fe
commit a07e194cf1
31 changed files with 86 additions and 86 deletions
+2 -2
View File
@@ -62,7 +62,7 @@ void DialogUtil::LocalizeDialogAndContents( HWND hdlg )
RString sGroup;
{
::GetWindowText( hdlg, szTemp, ARRAY_SIZE(szTemp) );
::GetWindowText( hdlg, szTemp, ARRAYSIZE(szTemp) );
RString s = szTemp;
sGroup = "Dialog-"+s;
s = THEME->GetString( sGroup, s );
@@ -71,7 +71,7 @@ void DialogUtil::LocalizeDialogAndContents( HWND hdlg )
for( HWND hwndChild = ::GetTopWindow(hdlg); hwndChild != NULL; hwndChild = ::GetNextWindow(hwndChild,GW_HWNDNEXT) )
{
::GetWindowText( hwndChild, szTemp, ARRAY_SIZE(szTemp) );
::GetWindowText( hwndChild, szTemp, ARRAYSIZE(szTemp) );
RString s = szTemp;
if( s.empty() )
continue;