diff options
-rw-r--r-- | sw/source/core/layout/dbg_lay.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sw/source/core/layout/dbg_lay.cxx b/sw/source/core/layout/dbg_lay.cxx index bb79020b893b..c7780cda5355 100644 --- a/sw/source/core/layout/dbg_lay.cxx +++ b/sw/source/core/layout/dbg_lay.cxx @@ -340,8 +340,7 @@ SwImplProtocol::~SwImplProtocol() void SwImplProtocol::CheckLine( ByteString& rLine ) { rLine = rLine.ToLowerAscii(); // Gross/Kleinschreibung ist einerlei - while( STRING_LEN > rLine.SearchAndReplace( '\t', ' ' ) ) - ; //nothing // Tabs werden durch Blanks ersetzt + rLine.SearchAndReplaceAll( '\t', ' ' ); if( '#' == rLine.GetChar(0) ) // Kommentarzeilen beginnen mit '#' return; if( '[' == rLine.GetChar(0) ) // Bereiche: FrmIds, Typen oder Funktionen |