diff options
author | Oliver Specht <oliver.specht@cib.de> | 2016-03-18 15:57:17 +0100 |
---|---|---|
committer | Oliver Specht <oliver.specht@cib.de> | 2016-03-23 13:57:16 +0000 |
commit | 46fa816aa0a713c54836b9689fa7a1c9ff55ef5a (patch) | |
tree | 8dad103eca59e741a51a2b761c9bfd69a24f95fc /sw/inc/shellio.hxx | |
parent | f9cf53a082f1d99b313ebd09c8791541859eac40 (diff) |
tdf#63211: saving embedded images to HTML optional
This change re-introduces linked images in HTML export
but keeps embedded image export in mailmerge e-Mail function
Change-Id: I9e956b590f4c675b5954e19e4d3948c36b55f1e6
Reviewed-on: https://gerrit.libreoffice.org/23359
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Oliver Specht <oliver.specht@cib.de>
Diffstat (limited to 'sw/inc/shellio.hxx')
-rw-r--r-- | sw/inc/shellio.hxx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sw/inc/shellio.hxx b/sw/inc/shellio.hxx index b23e1beb5e1f..9d492b38a322 100644 --- a/sw/inc/shellio.hxx +++ b/sw/inc/shellio.hxx @@ -374,7 +374,7 @@ protected: bool CopyNextPam( SwPaM ** ); void PutNumFormatFontsInAttrPool(); - void PutEditEngFontsInAttrPool(); + void PutEditEngFontsInAttrPool( bool bIncl_CJK_CTL = true ); virtual sal_uLong WriteStream() = 0; void SetBaseURL( const OUString& rURL ) { sBaseURL = rURL; } @@ -415,6 +415,8 @@ public: void SetShowProgress( bool bFlag ) { bShowProgress = bFlag; } + const OUString* GetOrigFileName() const { return pOrigFileName; } + const SwAsciiOptions& GetAsciiOptions() const { return aAscOpts; } void SetAsciiOptions( const SwAsciiOptions& rOpt ) { aAscOpts = rOpt; } @@ -434,6 +436,9 @@ public: static SwPaM * NewSwPaM(SwDoc & rDoc, sal_uLong const nStartIdx, sal_uLong const nEndIdx); + // If applicable copy a local file into internet. + bool CopyLocalFileToINet( OUString& rFileNm ); + // Stream-specific routines. Do not use in storage-writer! // Optimizing output on stream. |