summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2019-02-06 11:44:15 +0200
committerTor Lillqvist <tml@collabora.com>2019-02-06 13:50:23 +0200
commit5f5726d82e92e0ed403240dbcea57567a5c38a1f (patch)
treecd318a8e3258b8f7e3ff8e4246f5c8d5f3518683
parent697b73f4f421fd190070057aafb40a62005d3ba7 (diff)
Use bool and not sal_Bool, says a plugin
Change-Id: I1714a609ecb520260b99f361e4ed65bdc77ddddc
-rw-r--r--sw/source/ui/vba/vbaapplication.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/ui/vba/vbaapplication.cxx b/sw/source/ui/vba/vbaapplication.cxx
index a8279c18b413..c4340351b811 100644
--- a/sw/source/ui/vba/vbaapplication.cxx
+++ b/sw/source/ui/vba/vbaapplication.cxx
@@ -546,7 +546,7 @@ SwWordBasic::FileClose( const css::uno::Any& Save )
{
uno::Reference< frame::XModel > xModel( mpApp->getCurrentDocument(), uno::UNO_SET_THROW );
- sal_Bool bSave = false;
+ bool bSave = false;
if (Save.hasValue() && (Save >>= bSave) && bSave)
FileSave();