summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-04-06 09:18:43 +0300
committerTor Lillqvist <tml@collabora.com>2014-04-06 09:19:42 +0300
commit56b82942e82b155d4df3a925206678e5411eddf8 (patch)
treefa0340a3c7597bce65f568f9d5eee7030a34ff9f
parent52ee886ca0015b8997a328bfef655540f2ee49e8 (diff)
WaE: implicit conversion of literal of type 'sal_Bool' to 'bool'
Change-Id: Ib477afa1740f14832f49ce85822410b2e9db8d46
-rw-r--r--sfx2/source/dialog/partwnd.cxx2
-rw-r--r--sfx2/source/dialog/recfloat.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/sfx2/source/dialog/partwnd.cxx b/sfx2/source/dialog/partwnd.cxx
index 27baa2b75946..f4ed16182542 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 1f925990ecd5..83e85bd47c16 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 )