summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.com>2014-04-06 12:34:41 +0200
committerTomaž Vajngerl <tomaz.vajngerl@collabora.com>2014-04-08 13:15:56 +0200
commit2387805ffc4860046de57b154a51bc2354484bcd (patch)
tree82ea87e358b4235667666e73e7961fbc8a9e3b63
parent7f63706ad64ed781f8c3cdeeb28a44a3c31f432c (diff)
html: rename IgnoreImages -> SkipImages, initialize to false
Change-Id: I663264adab001bd1916b13c0d7c75f8a693687d4
-rw-r--r--sw/source/filter/html/wrthtml.cxx3
-rw-r--r--sw/source/filter/html/wrthtml.hxx2
2 files changed, 3 insertions, 2 deletions
diff --git a/sw/source/filter/html/wrthtml.cxx b/sw/source/filter/html/wrthtml.cxx
index 604b2105f193..451e35e18180 100644
--- a/sw/source/filter/html/wrthtml.cxx
+++ b/sw/source/filter/html/wrthtml.cxx
@@ -109,6 +109,7 @@ SwHTMLWriter::SwHTMLWriter( const OUString& rBaseURL )
, bLFPossible( sal_False )
, bPreserveForm( sal_False )
, bCfgNetscape4( sal_False )
+ , mbSkipImages(false)
{
SetBaseURL( rBaseURL );
@@ -143,7 +144,7 @@ void SwHTMLWriter::SetupFilterOptions(SfxMedium& rMedium)
OUString sFilterOptions = ((const SfxStringItem*)pItem)->GetValue();
- if (sFilterOptions == "IgnoreImages")
+ if (sFilterOptions == "SkipImages")
{
mbSkipImages = true;
}
diff --git a/sw/source/filter/html/wrthtml.hxx b/sw/source/filter/html/wrthtml.hxx
index 2e7508e61201..7d4b3106044b 100644
--- a/sw/source/filter/html/wrthtml.hxx
+++ b/sw/source/filter/html/wrthtml.hxx
@@ -394,7 +394,7 @@ public:
sal_Bool bCfgNetscape4 : 1; // Netscape4 Hacks
- sal_Bool mbSkipImages : 1;
+ bool mbSkipImages : 1;
// 23