summaryrefslogtreecommitdiff
path: root/fpicker
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2021-10-19 10:32:18 +0100
committerCaolán McNamara <caolanm@redhat.com>2021-10-19 14:49:27 +0200
commitc236052e73621a363c6efa2815327d315e0af300 (patch)
tree4d82e44e1c67b4f50af2632db173d392ae81ca85 /fpicker
parent516a4a59b7d16fbd803f55c37c51564f46a29f7d (diff)
Related: tdf#145169 make double-click call same handler as ok button
so that the user is asked to confirm an overwrite of a file Change-Id: I1340fb33559b68c28fc91e272f05e122f8c519ed Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123780 Tested-by: Jenkins Reviewed-by: Justin Luth <justin_luth@sil.org>
Diffstat (limited to 'fpicker')
-rw-r--r--fpicker/source/office/RemoteFilesDialog.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/fpicker/source/office/RemoteFilesDialog.cxx b/fpicker/source/office/RemoteFilesDialog.cxx
index a48620fe3839..3f67cc2702de 100644
--- a/fpicker/source/office/RemoteFilesDialog.cxx
+++ b/fpicker/source/office/RemoteFilesDialog.cxx
@@ -710,7 +710,7 @@ IMPL_LINK_NOARG( RemoteFilesDialog, DoubleClickHdl, SvtFileView*, bool )
if (pData)
{
if (!pData->mbIsFolder)
- m_xDialog->response(RET_OK);
+ OkHdl(*m_xOk_btn);
else
OpenURL(pData->maURL);
}