diff options
author | Eike Rathke <er@openoffice.org> | 2001-07-20 17:37:51 +0000 |
---|---|---|
committer | Eike Rathke <er@openoffice.org> | 2001-07-20 17:37:51 +0000 |
commit | 764eb45222cfe8a2ad1e81232009aeace0d37b43 (patch) | |
tree | 2550deb312ecdbb2597262ed6add627c22284f38 /sc/source/ui/docshell/impex.cxx | |
parent | 62440c6bb5060bb229711e7c222966f7fc09965f (diff) |
#90052# HTML export with NonConvertibleChars
Diffstat (limited to 'sc/source/ui/docshell/impex.cxx')
-rw-r--r-- | sc/source/ui/docshell/impex.cxx | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sc/source/ui/docshell/impex.cxx b/sc/source/ui/docshell/impex.cxx index 177dd1b85d57..79b39fa0bb05 100644 --- a/sc/source/ui/docshell/impex.cxx +++ b/sc/source/ui/docshell/impex.cxx @@ -2,9 +2,9 @@ * * $RCSfile: impex.cxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: er $ $Date: 2001-07-11 15:59:09 $ + * last change: $Author: er $ $Date: 2001-07-20 18:37:51 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1507,8 +1507,9 @@ BOOL ScImportExport::Doc2Sylk( SvStream& rStrm ) BOOL ScImportExport::Doc2HTML( SvStream& rStrm ) { - // CharSet is ignored in ScExportHTML - ScExportHTML( rStrm, pDoc, aRange, RTL_TEXTENCODING_DONTKNOW, bAll, aStreamPath ); + // CharSet is ignored in ScExportHTML, read from Load/Save HTML options + ScExportHTML( rStrm, pDoc, aRange, RTL_TEXTENCODING_DONTKNOW, bAll, + aStreamPath, aNonConvertibleChars ); return BOOL( rStrm.GetError() == SVSTREAM_OK ); } |