diff options
author | Noel Grandin <noel@peralex.com> | 2015-08-11 08:42:40 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-08-11 09:48:18 +0200 |
commit | 3553a5d3a899954c4db09e264d8faf07e817e564 (patch) | |
tree | 15f5d78ebe53ed498536c2d518a4cc2ad195c072 /svx/source/dialog/docrecovery.cxx | |
parent | e624c13cf1732f42d2da212b1b96aa9de7dd66cf (diff) |
loplugin: defaultparams
Change-Id: I513643385dc0a04b68c5cf4a5f43aa0804e572e6
Diffstat (limited to 'svx/source/dialog/docrecovery.cxx')
-rw-r--r-- | svx/source/dialog/docrecovery.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/dialog/docrecovery.cxx b/svx/source/dialog/docrecovery.cxx index 9ca770c83ce2..4e1d2f77839f 100644 --- a/svx/source/dialog/docrecovery.cxx +++ b/svx/source/dialog/docrecovery.cxx @@ -453,7 +453,7 @@ void SAL_CALL RecoveryCore::statusChanged(const css::frame::FeatureStateEvent& a if (sURL.isEmpty()) sURL = aNew.TemplateURL; INetURLObject aURL(sURL); - aNew.StandardImage = SvFileInformationManager::GetFileImage(aURL, false); + aNew.StandardImage = SvFileInformationManager::GetFileImage(aURL); /* set the right UI state for this item to NOT_RECOVERED_YET ... because nDocState shows the state of the last emergency save operation before and is interessting for the used recovery core service only ... @@ -1209,7 +1209,7 @@ IMPL_LINK_NOARG(RecoveryDialog, CancelButtonHdl) if (m_eRecoveryState == RecoveryDialog::E_RECOVERY_HANDLED) { - EndDialog(DLG_RET_CANCEL); + EndDialog(); return DLG_RET_CANCEL; } @@ -1349,7 +1349,7 @@ IMPL_LINK_NOARG(BrokenRecoveryDialog, OkButtonHdl) IMPL_LINK_NOARG(BrokenRecoveryDialog, CancelButtonHdl) { - EndDialog(DLG_RET_CANCEL); + EndDialog(); return 0; } |