Kaydet (Commit) 2387805f authored tarafından Tomaž Vajngerl's avatar Tomaž Vajngerl

html: rename IgnoreImages -> SkipImages, initialize to false

Change-Id: I663264adab001bd1916b13c0d7c75f8a693687d4
üst 7f63706a
...@@ -109,6 +109,7 @@ SwHTMLWriter::SwHTMLWriter( const OUString& rBaseURL ) ...@@ -109,6 +109,7 @@ SwHTMLWriter::SwHTMLWriter( const OUString& rBaseURL )
, bLFPossible( sal_False ) , bLFPossible( sal_False )
, bPreserveForm( sal_False ) , bPreserveForm( sal_False )
, bCfgNetscape4( sal_False ) , bCfgNetscape4( sal_False )
, mbSkipImages(false)
{ {
SetBaseURL( rBaseURL ); SetBaseURL( rBaseURL );
...@@ -143,7 +144,7 @@ void SwHTMLWriter::SetupFilterOptions(SfxMedium& rMedium) ...@@ -143,7 +144,7 @@ void SwHTMLWriter::SetupFilterOptions(SfxMedium& rMedium)
OUString sFilterOptions = ((const SfxStringItem*)pItem)->GetValue(); OUString sFilterOptions = ((const SfxStringItem*)pItem)->GetValue();
if (sFilterOptions == "IgnoreImages") if (sFilterOptions == "SkipImages")
{ {
mbSkipImages = true; mbSkipImages = true;
} }
......
...@@ -394,7 +394,7 @@ public: ...@@ -394,7 +394,7 @@ public:
sal_Bool bCfgNetscape4 : 1; // Netscape4 Hacks sal_Bool bCfgNetscape4 : 1; // Netscape4 Hacks
sal_Bool mbSkipImages : 1; bool mbSkipImages : 1;
// 23 // 23
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment