From 4eea29f79eca05e76bfe90aaa176f39dd0fd80ea Mon Sep 17 00:00:00 2001 From: Eike Rathke Date: Mon, 22 Feb 2016 21:06:45 +0100 Subject: [PATCH] enable wildcards when importing .xlsx|.xlsb, tdf#72196 Change-Id: I6fbc8926d10d9028287c154a2e933d2de847cc12 --- sc/source/filter/oox/workbooksettings.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/sc/source/filter/oox/workbooksettings.cxx b/sc/source/filter/oox/workbooksettings.cxx index b61885e6d46f..831314fcbbba 100644 --- a/sc/source/filter/oox/workbooksettings.cxx +++ b/sc/source/filter/oox/workbooksettings.cxx @@ -186,6 +186,7 @@ void WorkbookSettings::finalizeImport() case FILTER_BIFF: aPropSet.setProperty( PROP_IgnoreCase, true ); // always in Excel aPropSet.setProperty( PROP_RegularExpressions, false ); // not supported in Excel + aPropSet.setProperty( PROP_Wildcards, true ); // always in Excel break; case FILTER_UNKNOWN: break;