diff options
author | Oliver Bolte <obo@openoffice.org> | 2008-10-10 13:02:43 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2008-10-10 13:02:43 +0000 |
commit | 3735d9d387398fd90ab63ce2b1367dd154bd0fb9 (patch) | |
tree | 1e9e71bcaf766edbcdde3e54149c816da72ccd13 /tools/bootstrp/prj.cxx | |
parent | 1bed162a7494769275db0831810f51069415881f (diff) |
CWS-TOOLING: integrate CWS cmcfixes49
Diffstat (limited to 'tools/bootstrp/prj.cxx')
-rw-r--r-- | tools/bootstrp/prj.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/bootstrp/prj.cxx b/tools/bootstrp/prj.cxx index cb65a930a2f5..dfe86daac73e 100644 --- a/tools/bootstrp/prj.cxx +++ b/tools/bootstrp/prj.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: prj.cxx,v $ - * $Revision: 1.29 $ + * $Revision: 1.29.40.1 $ * * This file is part of OpenOffice.org. * @@ -88,7 +88,7 @@ ByteString SimpleConfig::GetNext() ByteString aString; if ( aStringBuffer =="" ) - while ((aStringBuffer = GetNextLine()) == "\t"); //solange bis != "\t" + while ((aStringBuffer = GetNextLine()) == "\t") ; //solange bis != "\t" if ( aStringBuffer =="" ) return ByteString(); @@ -112,7 +112,7 @@ ByteString SimpleConfig::GetNextLine() return "\t"; aTmpStr = aTmpStr.EraseLeadingChars(); aTmpStr = aTmpStr.EraseTrailingChars(); - while ( aTmpStr.SearchAndReplace(ByteString(' '),ByteString('\t') ) != STRING_NOTFOUND ); + while ( aTmpStr.SearchAndReplace(ByteString(' '),ByteString('\t') ) != STRING_NOTFOUND ) ; int nLength = aTmpStr.Len(); BOOL bFound = FALSE; ByteString aEraseString; |