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
+4 -4
View File
@@ -25,10 +25,10 @@ static void LoadFromSMTokens(
{
out.SetSavedToDisk( true ); // we're loading from disk, so this is by definintion already saved
TrimLeft( sStepsType ); TrimRight( sStepsType );
TrimLeft( sDescription ); TrimRight( sDescription );
TrimLeft( sDifficulty ); TrimRight( sDifficulty );
TrimLeft( sNoteData ); TrimRight( sNoteData );
Trim( sStepsType );
Trim( sDescription );
Trim( sDifficulty );
Trim( sNoteData );
// LOG->Trace( "Steps::LoadFromSMTokens()" );