[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.2' - vcl/source

Henry Castro (via logerrit) logerrit at kemper.freedesktop.org
Tue May 12 18:55:18 UTC 2020


 vcl/source/control/field.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b833f0a8c98e46c51a0e5fab21d8dbae32d3070e
Author:     Henry Castro <hcastro at collabora.com>
AuthorDate: Tue May 12 11:57:03 2020 -0400
Commit:     Henry Castro <hcastro at collabora.com>
CommitDate: Tue May 12 20:54:48 2020 +0200

    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 at gmail.com>
    Reviewed-by: Henry Castro <hcastro at collabora.com>

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
     {


More information about the Libreoffice-commits mailing list