diff options
author | Noel Grandin <noel@peralex.com> | 2015-04-07 16:18:28 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-04-09 11:01:06 +0200 |
commit | 14505bb67eb671ebcb91c81cbefbbc1aab930b44 (patch) | |
tree | 0ad2166f5c6c95d01f2f7204b13aaa0ca8119acc /fpicker | |
parent | 6ea42ddf8f06b7551e80a906908dbad0766a68c6 (diff) |
loplugin:staticmethods
Change-Id: I715374b531da2850434b2436633b6042ecb9ebe0
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/office/iodlg.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fpicker/source/office/iodlg.cxx b/fpicker/source/office/iodlg.cxx index ab74874c35f7..2a4b1fa7b7d4 100644 --- a/fpicker/source/office/iodlg.cxx +++ b/fpicker/source/office/iodlg.cxx @@ -1369,7 +1369,7 @@ void SvtFileDialog::OpenMultiSelection_Impl() SvTreeListEntry* pEntry = nCount ? _pFileView->FirstSelected() : NULL; if ( nCount && pEntry ) - _aPath = _pFileView->GetURL( pEntry ); + _aPath = SvtFileView::GetURL( pEntry ); // notify interested parties long nRet; @@ -1471,7 +1471,7 @@ IMPL_LINK( SvtFileDialog, SelectHdl_Impl, SvTabListBox*, pBox ) { if ( !pUserData->mbIsFolder ) { - OUString aName = pBox->GetEntryText( pEntry, 0 ); + OUString aName = SvTabListBox::GetEntryText( pEntry, 0 ); _pImp->_pEdFileName->SetText( aName ); _pImp->_pEdFileName->SetSelection( Selection( 0, aName.getLength() ) ); _aPath = pUserData->maURL; @@ -2248,7 +2248,7 @@ std::vector<OUString> SvtFileDialog::GetPathList() const { while ( pEntry ) { - aList.push_back(_pFileView->GetURL(pEntry)); + aList.push_back(SvtFileView::GetURL(pEntry)); pEntry = _pFileView->NextSelected( pEntry ); } } |