diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-03-15 10:56:55 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-03-15 23:20:34 +0900 |
commit | 079b16d044fffd05dc2402bbff4ab7d60635fa0f (patch) | |
tree | 4853f034dcc0f54b6ea6c8b8c8fca1207635415f /svx/source/unodraw | |
parent | 4a5b2c017509ff0ba5e4a2ae2c21621385e2952a (diff) |
sal_Bool to bool
Change-Id: I74d02b86664263519b4758511d885e35a8c9a78d
Diffstat (limited to 'svx/source/unodraw')
-rw-r--r-- | svx/source/unodraw/recoveryui.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/unodraw/recoveryui.cxx b/svx/source/unodraw/recoveryui.cxx index 0c6ae0de7c4e..164457e458da 100644 --- a/svx/source/unodraw/recoveryui.cxx +++ b/svx/source/unodraw/recoveryui.cxx @@ -253,7 +253,7 @@ RecoveryUI::EJob RecoveryUI::impl_classifyJob(const css::util::URL& aURL) sal_Bool RecoveryUI::impl_doEmergencySave() { // create core service, which implements the real "emergency save" algorithm. - svxdr::RecoveryCore* pCore = new svxdr::RecoveryCore(m_xContext, sal_True); + svxdr::RecoveryCore* pCore = new svxdr::RecoveryCore(m_xContext, true); css::uno::Reference< css::frame::XStatusListener > xCore(pCore); // create all needed dialogs for this operation @@ -291,7 +291,7 @@ void RecoveryUI::impl_doRecovery() bRecoveryOnly = !bCrashRepEnabled; // create core service, which implements the real "emergency save" algorithm. - svxdr::RecoveryCore* pCore = new svxdr::RecoveryCore(m_xContext, sal_False); + svxdr::RecoveryCore* pCore = new svxdr::RecoveryCore(m_xContext, false); css::uno::Reference< css::frame::XStatusListener > xCore(pCore); // create all needed dialogs for this operation |