[Libreoffice-commits] core.git: Branch 'libreoffice-7-2' - svl/source

Eike Rathke (via logerrit) logerrit at kemper.freedesktop.org
Mon Sep 13 13:15:28 UTC 2021


 svl/source/numbers/zforfind.cxx |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
commit c2d838598add1daff8c7429432715a8dd78231f0
Author:     Eike Rathke <erack at redhat.com>
AuthorDate: Mon Sep 13 11:42:39 2021 +0200
Commit:     Adolfo Jayme Barrientos <fitojb at ubuntu.com>
CommitDate: Mon Sep 13 15:14:54 2021 +0200

    Resolves: tdf#116184 Check that there is no trailing number behind a match
    
    ... without being separated by a blank so the match is rejected if
    it doesn't possibly form a date+time input and input can be
    accepted as decimal fraction.
    
    Change-Id: Iabd1d216366ecb8454c59822ce58f112bfa6091e
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122024
    Reviewed-by: Eike Rathke <erack at redhat.com>
    Tested-by: Jenkins
    (cherry picked from commit eb0b4ab2d3b86d77ee0edb652d4486343e5b3b1f)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122054
    Reviewed-by: Adolfo Jayme Barrientos <fitojb at ubuntu.com>

diff --git a/svl/source/numbers/zforfind.cxx b/svl/source/numbers/zforfind.cxx
index 121b9bd406f6..9d3c3baec899 100644
--- a/svl/source/numbers/zforfind.cxx
+++ b/svl/source/numbers/zforfind.cxx
@@ -1487,8 +1487,9 @@ bool ImpSvNumberInputScan::IsAcceptedDatePattern( sal_uInt16 nStartPatternAt )
                 if (!IsNum[nCheck])
                 {
                     // Trailing (or separating if time follows) blanks are ok.
-                    SkipBlanks( sStrArray[nCheck], nPos);
-                    if (nPos == sStrArray[nCheck].getLength())
+                    // No blank and a following number is not.
+                    const bool bBlanks = SkipBlanks( sStrArray[nCheck], nPos);
+                    if (nPos == sStrArray[nCheck].getLength() && (bBlanks || !IsNum[nNext]))
                     {
                         nAcceptedDatePattern = nPattern;
                         return true;


More information about the Libreoffice-commits mailing list