summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-01-09 16:13:24 +0000
committerCaolán McNamara <caolanm@redhat.com>2019-01-17 10:25:18 +0100
commit88cfaa624edb2cd2ee1c75c22e69f856c80a542f (patch)
tree9919840f0320eb44059d324ef7c7a52d330ad199
parentba44615ff9492ac2af06fa97c301b3cd4270a9dd (diff)
Resolves: tdf#122356 on row-activate click ok button
instead of proceeding directy to the ok response. Because there is an additional handler installed in the okbutton to do extra stuff that is needed to make this work Change-Id: I9646ea6978533084c6c9c48b03806e46eaa49c33 Reviewed-on: https://gerrit.libreoffice.org/66047 Tested-by: Jenkins Reviewed-by: Xisco Faulí <xiscofauli@libreoffice.org> (cherry picked from commit f3ff8ba104e8271e7a33c5cbb94ab8f561dd4a38) Reviewed-on: https://gerrit.libreoffice.org/66473 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Xisco Faulí <xiscofauli@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r--cui/source/tabpages/numfmt.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/cui/source/tabpages/numfmt.cxx b/cui/source/tabpages/numfmt.cxx
index d3eb10e38b42..344e381546b5 100644
--- a/cui/source/tabpages/numfmt.cxx
+++ b/cui/source/tabpages/numfmt.cxx
@@ -1139,7 +1139,10 @@ IMPL_LINK(SvxNumberFormatTabPage, DoubleClickHdl_Impl, weld::TreeView&, rLb, voi
SelFormatHdl_Impl(&rLb);
if (SfxTabDialogController* pController = GetDialogController())
- pController->getDialog()->response(RET_OK);
+ {
+ weld::Button& rOkButton = pController->GetOKButton();
+ rOkButton.clicked();
+ }
else
{
SfxSingleTabDialog* pParent = dynamic_cast<SfxSingleTabDialog*>(GetParentDialog());