sc/source/filter/excel/xecontent.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit d925471eca8d88c571777833f0aa6b9492b3b080 Author: Markus Mohrhard <[email protected]> AuthorDate: Tue Nov 18 15:27:46 2025 +0800 Commit: Xisco Fauli <[email protected]> CommitDate: Tue Nov 18 21:10:53 2025 +0100 tdf#164334: fix OOXML export of cond format tomorrow condition Change-Id: I0ece55bb94b6b7086ab6c728d0bf416cc4f221e6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/194140 Reviewed-by: Markus Mohrhard <[email protected]> Tested-by: Jenkins (cherry picked from commit 12def302eb518bec27bf8a6f6234ed88b945e2f5) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/194168 Reviewed-by: Xisco Fauli <[email protected]> diff --git a/sc/source/filter/excel/xecontent.cxx b/sc/source/filter/excel/xecontent.cxx index c2da396ea972..9de0d67f76f5 100644 --- a/sc/source/filter/excel/xecontent.cxx +++ b/sc/source/filter/excel/xecontent.cxx @@ -1163,7 +1163,7 @@ const char* getTimePeriodString( condformat::ScCondFormatDateType eType ) case condformat::YESTERDAY: return "yesterday"; case condformat::TOMORROW: - return "yesterday"; + return "tomorrow"; case condformat::THISWEEK: return "thisWeek"; case condformat::LASTWEEK:
