diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-06-21 13:14:04 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-06-21 17:26:36 +0200 |
commit | e3086b58eb5427d520b86c185f9d911bb6f7a3a0 (patch) | |
tree | cd1a609584e9774f7589f98fe1319015b2baf26a /cui | |
parent | ca2515bab1b25fc7e6a703aca1e501656a963da4 (diff) |
use FileDialogHelper to set file picker parent
Change-Id: I970b34fd3da12a1051343bdc26afad411121e672
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117584
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'cui')
-rw-r--r-- | cui/source/options/optpath.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/options/optpath.cxx b/cui/source/options/optpath.cxx index 0fe2ec033973..6e2cc6e48d61 100644 --- a/cui/source/options/optpath.cxx +++ b/cui/source/options/optpath.cxx @@ -567,8 +567,8 @@ IMPL_LINK_NOARG(SvxPathTabPage, PathHdl_Impl, weld::Button&, void) { try { - uno::Reference<uno::XComponentContext> xComponentContext(comphelper::getProcessComponentContext()); - uno::Reference<ui::dialogs::XFilePicker3> xFilePicker = ui::dialogs::FilePicker::createWithMode(xComponentContext, ui::dialogs::TemplateDescription::FILEOPEN_SIMPLE); + sfx2::FileDialogHelper aHelper(ui::dialogs::TemplateDescription::FILEOPEN_SIMPLE, FileDialogFlags::NONE, GetFrameWeld()); + uno::Reference<ui::dialogs::XFilePicker3> xFilePicker = aHelper.GetFilePicker(); xFilePicker->appendFilter(OUString(), "*.xml"); if (xFilePicker->execute() == ui::dialogs::ExecutableDialogResults::OK) { |