sw/source/ui/vba/vbaapplication.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ec8a45b9305e379a30a9768821f856e7928be5d0
Author:     Tor Lillqvist <t...@collabora.com>
AuthorDate: Wed Feb 6 11:44:15 2019 +0200
Commit:     Tor Lillqvist <t...@collabora.com>
CommitDate: Fri Sep 20 10:59:48 2019 +0200

    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 <t...@collabora.com>
    Tested-by: Tor Lillqvist <t...@collabora.com>

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();
 
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to