summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Joachim Lankenau <hjs@openoffice.org>2000-11-01 17:12:30 +0000
committerHans-Joachim Lankenau <hjs@openoffice.org>2000-11-01 17:12:30 +0000
commita99f4e4fe1dc1ff04f459079d9f226052aba4af0 (patch)
treec78ec25254a6f3b5ef73e11906e152c110dba9a2
parentd4e317f31f05eae4644a7abd40f42417998a7bd2 (diff)
search for #
-rw-r--r--tools/bootstrp/prj.cxx8
1 files 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 );
}