officecfg/registry/schema/org/openoffice/Office/Common.xcs | 2 +- svl/qa/unit/svl.cxx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-)
New commits: commit c90d0b49c1c7bafc4190abb929ff67518d4f74f7 Author: Aron Budea <[email protected]> AuthorDate: Wed Jan 14 21:49:45 2026 +1030 Commit: Andras Timar <[email protected]> CommitDate: Thu Jan 15 09:19:22 2026 +0100 tdf#170325 update default TwoDigitYear to 1950 2030 is almost here, so start of range still interpeted as 1900s should be pushed back. Change-Id: I76d7171a9947860d8353241aae1f2a97e9da5c69 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/197261 Tested-by: Jenkins Reviewed-by: Aron Budea <[email protected]> (cherry picked from commit 211cbca48cc3d2c912663224c650f4ee3431f7e5) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/197293 Reviewed-by: Andras Timar <[email protected]> Tested-by: Jenkins CollaboraOffice <[email protected]> (cherry picked from commit f83a059abb4433fa5b14d504f5848fd38596704b) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/197307 Tested-by: Andras Timar <[email protected]> diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs b/officecfg/registry/schema/org/openoffice/Office/Common.xcs index 85dcf9955c17..95e4bd2c1878 100644 --- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs +++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs @@ -3582,7 +3582,7 @@ two-digit-year date formats.</desc> <label>First two-digit year</label> </info> - <value>1930</value> + <value>1950</value> </prop> </group> <group oor:name="Filter"> diff --git a/svl/qa/unit/svl.cxx b/svl/qa/unit/svl.cxx index 1091cefb8de6..9440c25bfcc8 100644 --- a/svl/qa/unit/svl.cxx +++ b/svl/qa/unit/svl.cxx @@ -1239,7 +1239,7 @@ void Test::testIsNumberFormatSpecific() std::vector<FormatInputOutput> aIO = { { "005-12-14", true, "0005-12-14", 0 }, { "5-12-14", true, "2005-12-14", 0 }, - { "32-12-14", true, "1932-12-14", 0 } + { "52-12-14", true, "1952-12-14", 0 } }; checkSpecificNumberFormats( aFormatter, aIO, "[en-US] date"); @@ -1253,7 +1253,7 @@ void Test::testIsNumberFormatSpecific() std::vector<FormatInputOutput> aIO = { { "005-12-14", true, "0005-12-14", 0 }, { "5-12-14", true, "2005-12-14", 0 }, - { "32-12-14", true, "1932-12-14", 0 } + { "52-12-14", true, "1952-12-14", 0 } }; checkSpecificNumberFormats( aFormatter, aIO, "[de-DE] date");
