sfx2/source/appl/appopen.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 38b403a82403b333c3c0d53c2bb8adc3afc37f3b Author: Justin Luth <[email protected]> AuthorDate: Wed Dec 10 16:40:39 2025 -0500 Commit: Justin Luth <[email protected]> CommitDate: Thu Dec 11 13:46:49 2025 +0100 tdf#165180 'Calc Office Open XML' is also an Excel variant This was introduced with commit 4de186f43456baf1de162aefa5f76d76e0817e5e Author: Kohei Yoshida on Thu Sep 16 10:37:52 2010 calc-jump-on-formula-ref-sfx2.diff: Migrated There are no clear instructions or unit tests to know exactly how to test this, but it seems clear enough that it should continue to work when loaded with an Excel 2010 filter. Change-Id: I550ee20b9bac4ce0dac596b600647665598d1246 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/195411 Reviewed-by: Justin Luth <[email protected]> Tested-by: Jenkins diff --git a/sfx2/source/appl/appopen.cxx b/sfx2/source/appl/appopen.cxx index 03e7e92c384f..dbb4405bfcf3 100644 --- a/sfx2/source/appl/appopen.cxx +++ b/sfx2/source/appl/appopen.cxx @@ -573,7 +573,7 @@ bool lcl_isFilterNativelySupported(const SfxFilter& rFilter) const OUString& aName = rFilter.GetFilterName(); // We can handle all Excel variants natively. - return aName.startsWith("MS Excel"); + return aName.startsWith("MS Excel") || aName.startsWith("Calc Office Open XML"); } }
