summaryrefslogtreecommitdiff
path: root/svtools/source/svhtml
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2004-06-16 09:29:57 +0000
committerRüdiger Timm <rt@openoffice.org>2004-06-16 09:29:57 +0000
commit62c519d8f8d227fd218309ebc5bd8ee4702da8d3 (patch)
tree853519ad40d3844c583016d5280ece56a420749e /svtools/source/svhtml
parentaf92567efe60d6b6f59eba4487ba2d4406df4db2 (diff)
INTEGRATION: CWS ooo20040509 (1.1.1.1.588); FILE MERGED
2004/05/06 12:13:12 waratah 1.1.1.1.588.1: #i1858# correct an initialisation warning
Diffstat (limited to 'svtools/source/svhtml')
-rw-r--r--svtools/source/svhtml/htmlsupp.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svtools/source/svhtml/htmlsupp.cxx b/svtools/source/svhtml/htmlsupp.cxx
index 3a38dbb522fc..b11ba8adc0ae 100644
--- a/svtools/source/svhtml/htmlsupp.cxx
+++ b/svtools/source/svhtml/htmlsupp.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: htmlsupp.cxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 16:59:05 $
+ * last change: $Author: rt $ $Date: 2004-06-16 10:29:57 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -136,7 +136,7 @@ BOOL HTMLParser::ParseScriptOptions( String& rLangString,
void HTMLParser::RemoveSGMLComment( String &rString, BOOL bFull )
{
- sal_Unicode c;
+ sal_Unicode c = 0;
while( rString.Len() &&
( ' '==(c=rString.GetChar(0UL)) || '\t'==c || '\r'==c || '\n'==c ) )
rString.Erase( 0UL, 1UL );