diff options
author | Szymon Kłos <szymon.klos@collabora.com> | 2020-06-23 07:48:48 +0200 |
---|---|---|
committer | Szymon Kłos <szymon.klos@collabora.com> | 2020-07-03 12:13:13 +0200 |
commit | cef4ed2a79a5c0643afd513bc163fadff047ea82 (patch) | |
tree | e08f81339ddc69198a4883179584e4679a27b620 /desktop | |
parent | 29d3978de0687770bd223b639a77a6dd305e765d (diff) |
jsdialog: working number format field
Change-Id: Ibc3dcd34008767a7a38cc9b52a23935e0387f67e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97016
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Reviewed-by: Szymon Kłos <szymon.klos@collabora.com>
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97815
Tested-by: Jenkins
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/lib/init.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx index 1ced81cb6ea2..2f14c8ab2518 100644 --- a/desktop/source/lib/init.cxx +++ b/desktop/source/lib/init.cxx @@ -3662,6 +3662,7 @@ static void doc_sendDialogEvent(LibreOfficeKitDocument* /*pThis*/, unsigned nWin OString posString = OUStringToOString(entryPos, RTL_TEXTENCODING_ASCII_US); int pos = std::atoi(posString.getStr()); pCombobox->set_active(pos); + pCombobox->signal_changed(); } } else if (sAction == "change") |