From a99f4e4fe1dc1ff04f459079d9f226052aba4af0 Mon Sep 17 00:00:00 2001 From: Hans-Joachim Lankenau Date: Wed, 1 Nov 2000 17:12:30 +0000 Subject: search for # --- tools/bootstrp/prj.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/bootstrp/prj.cxx b/tools/bootstrp/prj.cxx index 7f1bc3603c22..75a5324d05ba 100644 --- a/tools/bootstrp/prj.cxx +++ b/tools/bootstrp/prj.cxx @@ -2,9 +2,9 @@ * * $RCSfile: prj.cxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 17:03:00 $ + * last change: $Author: hjs $ $Date: 2000-11-01 18:12:30 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -184,11 +184,11 @@ ByteString SimpleConfig::GetCleanedNextLine( BOOL bReadComments ) { aFileStream.ReadLine ( aTmpStr ); - if ( aTmpStr.Search( "#" == 0 )) + if ( aTmpStr.Search( "#" ) == 0 ) if (bReadComments ) return aTmpStr; else - while ( aTmpStr.Search( "#" == 0 )) + while ( aTmpStr.Search( "#" ) == 0 ) { aFileStream.ReadLine ( aTmpStr ); } -- cgit