summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorHenry Castro <hcastro@collabora.com>2020-05-12 11:57:03 -0400
committerHenry Castro <hcastro@collabora.com>2020-05-12 21:57:19 +0200
commit60b69ec33a1ffcd17a9e9042e622e6a475ee4e77 (patch)
tree9ad46044fc1bdfc13479eb7da51ca652ed1361be /vcl
parente863173d6dbb4fd417591807395e9437e0cb66bf (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> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94077 Tested-by: Jenkins
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/control/field.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/control/field.cxx b/vcl/source/control/field.cxx
index ff2507e05563..d81c3b3e2beb 100644
--- a/vcl/source/control/field.cxx
+++ b/vcl/source/control/field.cxx
@@ -639,7 +639,7 @@ void NumericFormatter::SetValueFromString(const OUString& rStr)
if (ImplNumericGetValue(rStr, nValue, GetDecimalDigits(),
Application::GetSettings().GetNeutralLocaleDataWrapper()))
{
- SetValue(nValue);
+ ImplNewFieldValue(nValue);
}
else
{