sw/source/filter/ww8/docxtableexport.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit f4be2758bf7e603fd237a3000ddb2660830d2d96 Author: Andrea Gelmini <[email protected]> AuthorDate: Wed Dec 10 12:19:50 2025 +0100 Commit: Julien Nabet <[email protected]> CommitDate: Fri Dec 12 09:40:29 2025 +0100 Fix typo Change-Id: I05e797beaf4f47f7a61ae7b1ef7595799a618051 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/195372 Tested-by: Jenkins Reviewed-by: Simon Chenery <[email protected]> Reviewed-by: Julien Nabet <[email protected]> diff --git a/sw/source/filter/ww8/docxtableexport.cxx b/sw/source/filter/ww8/docxtableexport.cxx index 6be12ab131ef..3957ba7a3285 100644 --- a/sw/source/filter/ww8/docxtableexport.cxx +++ b/sw/source/filter/ww8/docxtableexport.cxx @@ -665,7 +665,7 @@ void DocxAttributeOutput::TableRowRedline( = bRemovePersonalInfo || (aDateTime.GetYear() == 1970 && aDateTime.GetMonth() == 1 && aDateTime.GetDay() == 1) - // The officeotron validator does not think year 0 is valid, so just dont put anything, + // The officeotron validator does not think year 0 is valid, so just don't put anything, // a zero year is not useful anyway. || (aDateTime.GetYear() == 0 && aDateTime.GetMonth() == 0 && aDateTime.GetDay() == 0); @@ -740,7 +740,7 @@ void DocxAttributeOutput::TableCellRedline( = bRemovePersonalInfo || (aDateTime.GetYear() == 1970 && aDateTime.GetMonth() == 1 && aDateTime.GetDay() == 1) - // The officeotron validator does not think year 0 is valid, so just dont put anything, + // The officeotron validator does not think year 0 is valid, so just don't put anything, // a zero year is not useful anyway. || (aDateTime.GetYear() == 0 && aDateTime.GetMonth() == 0 && aDateTime.GetDay() == 0);
