diff options
author | Noel Grandin <noel@peralex.com> | 2016-03-08 14:45:58 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-03-09 10:07:46 +0200 |
commit | 44bccf92bc78daa93e969e8b37aeef96a3b38987 (patch) | |
tree | 3a59196190ac8d7bf08a6090dc8ca78b78b81036 /fpicker | |
parent | ff745fc0d973b8d793c3ec21f258ebe695ce3ee2 (diff) |
loplugin:constantparam in svtools
Change-Id: Ica82c2758030729ee0d1480c16720cf6c8fed487
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/office/RemoteFilesDialog.cxx | 4 | ||||
-rw-r--r-- | fpicker/source/office/iodlg.cxx | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/fpicker/source/office/RemoteFilesDialog.cxx b/fpicker/source/office/RemoteFilesDialog.cxx index c497eca1303b..cf012952baa2 100644 --- a/fpicker/source/office/RemoteFilesDialog.cxx +++ b/fpicker/source/office/RemoteFilesDialog.cxx @@ -566,7 +566,7 @@ FileViewResult RemoteFilesDialog::OpenURL( OUString const & sURL ) sFilter = m_aFilters[m_nCurrentFilter].second; } - m_pFileView->EndInplaceEditing( false ); + m_pFileView->EndInplaceEditing(); DBG_ASSERT( !m_pCurrentAsyncAction.is(), "SvtFileDialog::executeAsync: previous async action not yet finished!" ); @@ -1048,7 +1048,7 @@ IMPL_LINK_TYPED ( RemoteFilesDialog, SelectBreadcrumbHdl, Breadcrumb*, pPtr, voi IMPL_LINK_NOARG_TYPED ( RemoteFilesDialog, NewFolderHdl, Button*, void ) { - m_pFileView->EndInplaceEditing( false ); + m_pFileView->EndInplaceEditing(); SmartContent aContent( m_pFileView->GetViewURL() ); OUString aTitle; diff --git a/fpicker/source/office/iodlg.cxx b/fpicker/source/office/iodlg.cxx index a8bcecf8ded3..3bc68a12741c 100644 --- a/fpicker/source/office/iodlg.cxx +++ b/fpicker/source/office/iodlg.cxx @@ -768,7 +768,7 @@ void SvtFileDialog::Init_Impl IMPL_LINK_NOARG_TYPED( SvtFileDialog, NewFolderHdl_Impl, Button*, void) { - _pFileView->EndInplaceEditing( false ); + _pFileView->EndInplaceEditing(); SmartContent aContent( _pFileView->GetViewURL( ) ); OUString aTitle; @@ -1329,7 +1329,7 @@ IMPL_LINK_NOARG_TYPED( SvtFileDialog, URLBoxModifiedHdl_Impl, SvtURLBox*, void ) IMPL_LINK_NOARG_TYPED( SvtFileDialog, ConnectToServerPressed_Hdl, Button*, void ) { - _pFileView->EndInplaceEditing( false ); + _pFileView->EndInplaceEditing(); ScopedVclPtrInstance< PlaceEditDialog > aDlg(this); short aRetCode = aDlg->Execute(); @@ -2155,7 +2155,7 @@ const OUString& SvtFileDialog::GetStandardDir() const void SvtFileDialog::PrevLevel_Impl() { - _pFileView->EndInplaceEditing( false ); + _pFileView->EndInplaceEditing(); OUString sDummy; executeAsync( AsyncPickerAction::ePrevLevel, sDummy, sDummy ); @@ -2164,7 +2164,7 @@ void SvtFileDialog::PrevLevel_Impl() void SvtFileDialog::OpenURL_Impl( const OUString& _rURL ) { - _pFileView->EndInplaceEditing( false ); + _pFileView->EndInplaceEditing(); executeAsync( AsyncPickerAction::eOpenURL, _rURL, getMostCurrentFilter( _pImp ) ); } |