[Libreoffice-commits] core.git: sw/source
Tor Lillqvist
tml at collabora.com
Sun Apr 6 00:07:41 PDT 2014
sw/source/core/uibase/app/docsh2.cxx | 2 +-
sw/source/core/uibase/dbui/mailmergechildwindow.cxx | 2 +-
sw/source/core/uibase/dialog/SwSpellDialogChildWindow.cxx | 2 +-
sw/source/core/uibase/fldui/fldwrap.cxx | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
New commits:
commit 6390dd9777ff63ca75a088e56dd444a355439343
Author: Tor Lillqvist <tml at collabora.com>
Date: Sun Apr 6 09:58:36 2014 +0300
WaE: implicit conversion of literal of type 'sal_Bool' to 'bool'
Change-Id: I58d9ccd0e2086f96ce6a51578d51db3fcb577400
diff --git a/sw/source/core/uibase/app/docsh2.cxx b/sw/source/core/uibase/app/docsh2.cxx
index 6029f72..9ae3e47 100644
--- a/sw/source/core/uibase/app/docsh2.cxx
+++ b/sw/source/core/uibase/app/docsh2.cxx
@@ -1033,7 +1033,7 @@ void SwDocShell::Execute(SfxRequest& rReq)
if( !aFileName.isEmpty() )
{
- if( PrepareClose( sal_False ) )
+ if( PrepareClose( false ) )
{
SwWait aWait( *this, true );
diff --git a/sw/source/core/uibase/dbui/mailmergechildwindow.cxx b/sw/source/core/uibase/dbui/mailmergechildwindow.cxx
index d038f7e..44edd7a 100644
--- a/sw/source/core/uibase/dbui/mailmergechildwindow.cxx
+++ b/sw/source/core/uibase/dbui/mailmergechildwindow.cxx
@@ -108,7 +108,7 @@ void SwMailMergeChildWin::FillInfo(SfxChildWinInfo& rInfo) const
{
SfxFloatingWindow::FillInfo(rInfo);
rInfo.aWinState = OString();
- rInfo.bVisible = sal_False;
+ rInfo.bVisible = false;
}
struct SwSendMailDialog_Impl
diff --git a/sw/source/core/uibase/dialog/SwSpellDialogChildWindow.cxx b/sw/source/core/uibase/dialog/SwSpellDialogChildWindow.cxx
index 7efabbc..176e850 100644
--- a/sw/source/core/uibase/dialog/SwSpellDialogChildWindow.cxx
+++ b/sw/source/core/uibase/dialog/SwSpellDialogChildWindow.cxx
@@ -170,7 +170,7 @@ SwSpellDialogChildWindow::~SwSpellDialogChildWindow ()
SfxChildWinInfo SwSpellDialogChildWindow::GetInfo (void) const
{
SfxChildWinInfo aInfo = svx::SpellDialogChildWindow::GetInfo();
- aInfo.bVisible = sal_False;
+ aInfo.bVisible = false;
return aInfo;
}
diff --git a/sw/source/core/uibase/fldui/fldwrap.cxx b/sw/source/core/uibase/fldui/fldwrap.cxx
index 955978d..18c09bb9 100644
--- a/sw/source/core/uibase/fldui/fldwrap.cxx
+++ b/sw/source/core/uibase/fldui/fldwrap.cxx
@@ -121,7 +121,7 @@ SfxChildWinInfo SwFldDataOnlyDlgWrapper::GetInfo() const
SfxChildWinInfo aInfo = SfxChildWindow::GetInfo();
// prevent instatiation of dialog other than by calling
// the mail merge dialog
- aInfo.bVisible = sal_False;
+ aInfo.bVisible = false;
return aInfo;
}
More information about the Libreoffice-commits
mailing list