diff options
author | Henry Castro <hcastro@collabora.com> | 2020-05-12 11:57:03 -0400 |
---|---|---|
committer | Henry Castro <hcastro@collabora.com> | 2020-05-12 20:54:48 +0200 |
commit | b833f0a8c98e46c51a0e5fab21d8dbae32d3070e (patch) | |
tree | bfa1ca80893ca0934621c80e94ce4c7f3c833cfd /vcl | |
parent | ad991bce9707e810c38c4897933875886a6b37b0 (diff) |
lok: replace SetValue for ImplNewFieldValue
The ImplNewFieldValue notify changes in the spin
control
Change-Id: I64c0239b0a12ecdf9a3b7af4c496cee88d1b2cb3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94070
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Reviewed-by: Henry Castro <hcastro@collabora.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/control/field.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/control/field.cxx b/vcl/source/control/field.cxx index 5ef09683269f..fae8506a92e6 100644 --- a/vcl/source/control/field.cxx +++ b/vcl/source/control/field.cxx @@ -655,7 +655,7 @@ void NumericFormatter::SetValueFromString(const OUString& rStr) if (ImplNumericGetValue(rStr, nValue, GetDecimalDigits(), Application::GetSettings().GetNeutralLocaleDataWrapper())) { - SetValue(nValue); + ImplNewFieldValue(nValue); } else { |