diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-03-23 15:46:31 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-23 15:46:31 +0100 |
commit | 9f6d7d40b00fd67200c1a2a863cded790e77a40a (patch) | |
tree | 67a67e589807b2e16730f9dd536ac2186acd8c73 /sw/source | |
parent | b77493bd2414caf8fa240f0fb5bb4e544ac7f480 (diff) |
loplugin:literaltoboolconversion
Change-Id: I25fe5df2b7dc6dd238f73b8a0f2f4f40a6f238ee
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/filter/html/htmlflywriter.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/html/htmlflywriter.cxx b/sw/source/filter/html/htmlflywriter.cxx index 12812312ea6b..914ca8a62a60 100644 --- a/sw/source/filter/html/htmlflywriter.cxx +++ b/sw/source/filter/html/htmlflywriter.cxx @@ -1784,7 +1784,7 @@ static Writer& OutHTML_FrameFormatGrfNode( Writer& rWrt, const SwFrameFormat& rF // create a (mirrored) jpeg file if( rHTMLWrt.GetOrigFileName() ) aGraphicURL = *rHTMLWrt.GetOrigFileName(); - pGrfNd->GetGrf( sal_True ); + pGrfNd->GetGrf( true ); sal_uLong nFlags = XOUTBMP_USE_GIF_IF_SENSIBLE | XOUTBMP_USE_NATIVE_IF_POSSIBLE; |