cleanup newline handling in languages

remove View Statistics button (moved to command line)
This commit is contained in:
Chris Danford
2006-01-06 17:57:26 +00:00
parent 9ef306201c
commit f8379c8db7
6 changed files with 33 additions and 44 deletions
+1 -5
View File
@@ -237,11 +237,7 @@ void SMPackageUtil::LocalizeDialogAndContents( CDialog &dlg )
RString s = sTemp;
if( s.empty() )
continue;
vector<RString> vsBits;
split( s, "\n", vsBits, true );
FOREACH( RString, vsBits, iter )
*iter = THEME->GetString(sGroup,RString(*iter));
s = join("\n",vsBits);
s = THEME->GetString( sGroup, s );
pChild->SetWindowText( s );
}
}