[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.2' - sw/source

Tor Lillqvist (via logerrit) logerrit at kemper.freedesktop.org
Fri Sep 20 09:00:57 UTC 2019


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

New commits:
commit ec8a45b9305e379a30a9768821f856e7928be5d0
Author:     Tor Lillqvist <tml at collabora.com>
AuthorDate: Wed Feb 6 11:44:15 2019 +0200
Commit:     Tor Lillqvist <tml at 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 <tml at collabora.com>
    Tested-by: Tor Lillqvist <tml at 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();
 


More information about the Libreoffice-commits mailing list