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 37435cd653fa0178ffe74b0e9225c17061292455 Author: Aron Budea <[email protected]> AuthorDate: Wed Jan 14 21:49:45 2026 +1030 Commit: Adolfo Jayme Barrientos <[email protected]> CommitDate: Wed Jan 14 23:29:51 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/+/197292 Reviewed-by: Adolfo Jayme Barrientos <[email protected]> diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs b/officecfg/registry/schema/org/openoffice/Office/Common.xcs index cd3ba8cc88f4..7af8d14237ca 100644 --- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs +++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs @@ -3598,7 +3598,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 54878e9451e3..4b482e0c1d9b 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");
