[Libreoffice-commits] core.git: 2 commits - sfx2/source svx/source

Tor Lillqvist tml at collabora.com
Sat Apr 5 23:29:26 PDT 2014


 sfx2/source/dialog/partwnd.cxx  |    2 +-
 sfx2/source/dialog/recfloat.cxx |    2 +-
 svx/source/form/filtnav.cxx     |    2 +-
 svx/source/form/fmPropBrw.cxx   |    2 +-
 svx/source/form/fmexpl.cxx      |    2 +-
 svx/source/form/tabwin.cxx      |    2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

New commits:
commit e2598531c072163e5a239e104bf22f98e1e2291d
Author: Tor Lillqvist <tml at collabora.com>
Date:   Sun Apr 6 09:25:02 2014 +0300

    WaE: implicit conversion of literal of type 'sal_Bool' to 'bool'
    
    Change-Id: Ibc279b90a19dc38f61d3855346b26eea674fc097

diff --git a/svx/source/form/filtnav.cxx b/svx/source/form/filtnav.cxx
index 56e11fd..13f99e4 100644
--- a/svx/source/form/filtnav.cxx
+++ b/svx/source/form/filtnav.cxx
@@ -1976,7 +1976,7 @@ bool FmFilterNavigatorWin::Close()
 void FmFilterNavigatorWin::FillInfo( SfxChildWinInfo& rInfo ) const
 {
     SfxDockingWindow::FillInfo( rInfo );
-    rInfo.bVisible = sal_False;
+    rInfo.bVisible = false;
 }
 
 
diff --git a/svx/source/form/fmPropBrw.cxx b/svx/source/form/fmPropBrw.cxx
index 45357f9..7cafa10 100644
--- a/svx/source/form/fmPropBrw.cxx
+++ b/svx/source/form/fmPropBrw.cxx
@@ -482,7 +482,7 @@ void FmPropBrw::implSetNewSelection( const InterfaceBag& _rSelection )
 
 void FmPropBrw::FillInfo( SfxChildWinInfo& rInfo ) const
 {
-    rInfo.bVisible = sal_False;
+    rInfo.bVisible = false;
     rInfo.aExtraString = getCurrentPage();
 }
 
diff --git a/svx/source/form/fmexpl.cxx b/svx/source/form/fmexpl.cxx
index 99fd2e5..c1ab382 100644
--- a/svx/source/form/fmexpl.cxx
+++ b/svx/source/form/fmexpl.cxx
@@ -612,7 +612,7 @@ namespace svxform
     void NavigatorFrame::FillInfo( SfxChildWinInfo& rInfo ) const
     {
         SfxDockingWindow::FillInfo( rInfo );
-        rInfo.bVisible = sal_False;
+        rInfo.bVisible = false;
     }
 
 
diff --git a/svx/source/form/tabwin.cxx b/svx/source/form/tabwin.cxx
index 25472c7..2bdc7ed 100644
--- a/svx/source/form/tabwin.cxx
+++ b/svx/source/form/tabwin.cxx
@@ -420,7 +420,7 @@ void FmFieldWin::Resize()
 
 void FmFieldWin::FillInfo( SfxChildWinInfo& rInfo ) const
 {
-    rInfo.bVisible = sal_False;
+    rInfo.bVisible = false;
 }
 
 
commit 56b82942e82b155d4df3a925206678e5411eddf8
Author: Tor Lillqvist <tml at collabora.com>
Date:   Sun Apr 6 09:18:43 2014 +0300

    WaE: implicit conversion of literal of type 'sal_Bool' to 'bool'
    
    Change-Id: Ib477afa1740f14832f49ce85822410b2e9db8d46

diff --git a/sfx2/source/dialog/partwnd.cxx b/sfx2/source/dialog/partwnd.cxx
index 27baa2b..f4ed1618 100644
--- a/sfx2/source/dialog/partwnd.cxx
+++ b/sfx2/source/dialog/partwnd.cxx
@@ -198,7 +198,7 @@ bool SfxPartDockWnd_Impl::Notify( NotifyEvent& rEvt )
 void SfxPartDockWnd_Impl::FillInfo( SfxChildWinInfo& rInfo ) const
 {
     SfxDockingWindow::FillInfo( rInfo );
-    rInfo.bVisible = sal_False;
+    rInfo.bVisible = false;
 }
 
 
diff --git a/sfx2/source/dialog/recfloat.cxx b/sfx2/source/dialog/recfloat.cxx
index 1f92599..83e85bd 100644
--- a/sfx2/source/dialog/recfloat.cxx
+++ b/sfx2/source/dialog/recfloat.cxx
@@ -225,7 +225,7 @@ bool SfxRecordingFloat_Impl::Close()
 void SfxRecordingFloat_Impl::FillInfo( SfxChildWinInfo& rInfo ) const
 {
     SfxFloatingWindow::FillInfo( rInfo );
-    rInfo.bVisible = sal_False;
+    rInfo.bVisible = false;
 }
 
 void SfxRecordingFloat_Impl::StateChanged( StateChangedType nStateChange )


More information about the Libreoffice-commits mailing list