summaryrefslogtreecommitdiffstats
path: root/cui
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2015-10-04 16:35:53 +0200
committerJulien Nabet <serval2412@yahoo.fr>2015-10-04 15:48:18 +0000
commite4c58c39590091cd9bbc7ace4ebd81b3241a3816 (patch)
tree8814ee99389d620d83d88e7a11f7449e0b65262c /cui
parentPrefer getSelectedFiles to getFiles (sdext+qadevOOo) (diff)
downloadcore-e4c58c39590091cd9bbc7ace4ebd81b3241a3816.tar.gz
core-e4c58c39590091cd9bbc7ace4ebd81b3241a3816.zip
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')
-rw-r--r--cui/source/dialogs/insdlg.cxx4
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());
}