diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-04-18 20:00:30 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-04-18 20:00:30 +0200 |
commit | d9eefff51b29edb928a6770d90dbb6cf4654e3cf (patch) | |
tree | 013381dc5d98cac7ce3545b510fd50b30c4285f8 /sw | |
parent | d6521b07f407e70e0eb94efd5136049e2cc6cc33 (diff) |
loplugin:implicitboolconversion
Change-Id: I5c74d150d5e7e35ef9512e6f07bf370c521b0fec
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/ww8/rtfexport.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/rtfexport.cxx b/sw/source/filter/ww8/rtfexport.cxx index ab5e763e3a6c..24d90be36dc4 100644 --- a/sw/source/filter/ww8/rtfexport.cxx +++ b/sw/source/filter/ww8/rtfexport.cxx @@ -512,7 +512,7 @@ void RtfExport::ExportDocument_Impl() if (pTxtFmtColl && pTxtFmtColl->GetItemState(RES_PARATR_HYPHENZONE, false, &pItem) == SfxItemState::SET) { Strm().WriteCharPtr(OOO_STRING_SVTOOLS_RTF_HYPHAUTO); - OutULong(static_cast<const SvxHyphenZoneItem*>(pItem)->IsHyphen()); + OutULong(int(static_cast<const SvxHyphenZoneItem*>(pItem)->IsHyphen())); } // Zoom |