TrimLeft(); TrimRight(); -> Trim();

This commit is contained in:
Steve Checkoway
2007-12-01 23:33:38 +00:00
parent a21830527f
commit 611366a664
11 changed files with 18 additions and 30 deletions
@@ -311,8 +311,7 @@ void BacktraceNames::FromString( RString s )
unsigned pos = 0;
while( pos < s.size() && s[pos] != '(' && s[pos] != '[' )
File += s[pos++];
TrimRight( File );
TrimLeft( File );
Trim( File );
if( pos < s.size() && s[pos] == '(' )
{