summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-04-06 09:58:36 +0300
committerTor Lillqvist <tml@collabora.com>2014-04-06 10:03:58 +0300
commit6390dd9777ff63ca75a088e56dd444a355439343 (patch)
tree517e0e218c874ef36866dee75dd46222b2fb997b
parente2598531c072163e5a239e104bf22f98e1e2291d (diff)
WaE: implicit conversion of literal of type 'sal_Bool' to 'bool'
Change-Id: I58d9ccd0e2086f96ce6a51578d51db3fcb577400
-rw-r--r--sw/source/core/uibase/app/docsh2.cxx2
-rw-r--r--sw/source/core/uibase/dbui/mailmergechildwindow.cxx2
-rw-r--r--sw/source/core/uibase/dialog/SwSpellDialogChildWindow.cxx2
-rw-r--r--sw/source/core/uibase/fldui/fldwrap.cxx2
4 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/core/uibase/app/docsh2.cxx b/sw/source/core/uibase/app/docsh2.cxx
index 6029f721d6a7..9ae3e47158f6 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 d038f7eeccd0..44edd7a426fa 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 7efabbc566ac..176e8504549e 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 955978d7b8b8..18c09bb93a43 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;
}