diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2015-10-04 16:35:53 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2015-10-04 15:48:18 +0000 |
commit | e4c58c39590091cd9bbc7ace4ebd81b3241a3816 (patch) | |
tree | 8814ee99389d620d83d88e7a11f7449e0b65262c /cui/source | |
parent | 3ad8f409d7658d94871aff2e709f013e8c869d98 (diff) |
Prefer getSelectedFiles to getFiles (cui)
Change-Id: I4fa2d2700fac9b1a25dfc5c6cbe4ae911c5b3d32
Reviewed-on: https://gerrit.libreoffice.org/19127
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'cui/source')
-rw-r--r-- | cui/source/dialogs/insdlg.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/dialogs/insdlg.cxx b/cui/source/dialogs/insdlg.cxx index 8e5bc95953a6..d3d34d756d0a 100644 --- a/cui/source/dialogs/insdlg.cxx +++ b/cui/source/dialogs/insdlg.cxx @@ -127,7 +127,7 @@ IMPL_LINK_NOARG_TYPED(SvInsertOleDlg, BrowseHdl, Button*, void) if( xFilePicker->execute() == ExecutableDialogResults::OK ) { - Sequence< OUString > aPathSeq( xFilePicker->getFiles() ); + Sequence< OUString > aPathSeq( xFilePicker->getSelectedFiles() ); INetURLObject aObj( aPathSeq[0] ); m_pEdFilepath->SetText( aObj.PathToFileName() ); } @@ -382,7 +382,7 @@ IMPL_LINK_NOARG_TYPED(SvInsertPlugInDialog, BrowseHdl, Button*, void) if( xFilePicker->execute() == ExecutableDialogResults::OK ) { - Sequence< OUString > aPathSeq( xFilePicker->getFiles() ); + Sequence< OUString > aPathSeq( xFilePicker->getSelectedFiles() ); INetURLObject aObj( aPathSeq[0] ); m_pEdFileurl->SetText(aObj.PathToFileName()); } |