diff options
author | jp <jp@openoffice.org> | 2001-01-17 11:50:56 +0000 |
---|---|---|
committer | jp <jp@openoffice.org> | 2001-01-17 11:50:56 +0000 |
commit | f8152e60ad22d64e0c3808ae6a181bdaa27ba4ae (patch) | |
tree | 80b8e6ecca0e845ab4885eda32f6a819f1e2b1d4 | |
parent | da31cf3f68e1012d1b58680bb22c5b953d3796dc (diff) |
remove compiler warning
-rw-r--r-- | sw/source/filter/html/htmlbas.cxx | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/sw/source/filter/html/htmlbas.cxx b/sw/source/filter/html/htmlbas.cxx index b3fc0fb33233..ce0d2d8a1938 100644 --- a/sw/source/filter/html/htmlbas.cxx +++ b/sw/source/filter/html/htmlbas.cxx @@ -2,9 +2,9 @@ * * $RCSfile: htmlbas.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: jp $ $Date: 2000-11-13 10:46:28 $ + * last change: $Author: jp $ $Date: 2001-01-17 12:50:56 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -134,8 +134,7 @@ void SwHTMLParser::NewScript() ParseScriptOptions( aScriptType, eScriptLang, aScriptURL, aBasicLib, aBasicModule ); - BOOL bDownload = aScriptURL.Len(); - if( bDownload ) + if( aScriptURL.Len() ) { // Den Inhalt des Script-Tags ignorieren bIgnoreRawData = TRUE; @@ -396,11 +395,14 @@ void SwHTMLWriter::OutBasicBodyEvents() Source Code Control System - Header - $Header: /zpool/svn/migration/cvs_rep_09_09_08/code/sw/source/filter/html/htmlbas.cxx,v 1.2 2000-11-13 10:46:28 jp Exp $ + $Header: /zpool/svn/migration/cvs_rep_09_09_08/code/sw/source/filter/html/htmlbas.cxx,v 1.3 2001-01-17 12:50:56 jp Exp $ Source Code Control System - Update $Log: not supported by cvs2svn $ + Revision 1.2 2000/11/13 10:46:28 jp + remove IniManager + Revision 1.1.1.1 2000/09/18 17:14:55 hr initial import |