summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2019-02-06 11:44:15 +0200
committerTor Lillqvist <tml@collabora.com>2019-09-20 10:59:48 +0200
commitec8a45b9305e379a30a9768821f856e7928be5d0 (patch)
tree5fd3b9d81f82d820d4e15e118c60628aaea6bb24
parent489ff389d166f95ff65597724e8958e96916608c (diff)
Use bool and not sal_Bool, says a plugin
Change-Id: I1714a609ecb520260b99f361e4ed65bdc77ddddc (cherry picked from commit 5f5726d82e92e0ed403240dbcea57567a5c38a1f) Reviewed-on: https://gerrit.libreoffice.org/79156 Reviewed-by: Tor Lillqvist <tml@collabora.com> Tested-by: Tor Lillqvist <tml@collabora.com>
-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 12e7c2e80dd5..4d92fbd6b8a8 100644
--- a/sw/source/ui/vba/vbaapplication.cxx
+++ b/sw/source/ui/vba/vbaapplication.cxx
@@ -547,7 +547,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();