use untemplated trim*

This commit is contained in:
Glenn Maynard
2002-10-31 08:05:13 +00:00
parent a28d19268a
commit 80c0f04397
8 changed files with 22 additions and 21 deletions
+6 -6
View File
@@ -17,12 +17,12 @@ void SMLoader::LoadFromSMTokens(
Notes &out
)
{
sNotesType.TrimLeft();
sNotesType.TrimRight();
sDescription.TrimLeft();
sDescription.TrimRight();
sDifficulty.TrimLeft();
sDifficulty.TrimRight();
TrimLeft(sNotesType);
TrimRight(sNotesType);
TrimLeft(sDescription);
TrimRight(sDescription);
TrimLeft(sDifficulty);
TrimRight(sDifficulty);
// LOG->Trace( "Notes::LoadFromSMTokens()" );