oox/source/core/filterdetect.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 513b033c24e996ac376f160f43cb4a04d1d110ba Author: Aron Budea <[email protected]> AuthorDate: Mon Mar 30 05:24:55 2026 +1030 Commit: Justin Luth <[email protected]> CommitDate: Mon Mar 30 19:51:16 2026 +0200 oox: Fix typo in DOCM filter name during detection Otherwise affected files eg. fdo83844-1.doc fail to open. Regression from 0f7cf56ca10e8b6cf34767d25281d783b416fbeb. Change-Id: I55ba367b43e1ecdf586522ac1e47bb322bf12702 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/202943 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Aron Budea <[email protected]> (cherry picked from commit 026bd8e1f3be8c2d7c9fd64f7ff03833313d2d30) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/202982 Reviewed-by: Justin Luth <[email protected]> Tested-by: Jenkins diff --git a/oox/source/core/filterdetect.cxx b/oox/source/core/filterdetect.cxx index 45c4cb06fe88..40adfe47619b 100644 --- a/oox/source/core/filterdetect.cxx +++ b/oox/source/core/filterdetect.cxx @@ -243,7 +243,7 @@ OUString FilterDetectDocHandler::getFilterNameFromContentType( std::u16string_vi case OOXMLVariant::ISO_Strict: // Not supported, map to ISO transitional return u"writer_OOXML_VBA"_ustr; case OOXMLVariant::ECMA_Transitional: - return u"wwriter_MS_Word_2007_VBA"_ustr; + return u"writer_MS_Word_2007_VBA"_ustr; } }
