summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbvarga91 <balazs.varga991@gmail.com>2018-07-05 23:14:01 +0200
committerLászló Németh <nemeth@numbertext.org>2018-07-06 18:14:12 +0200
commitfc434c8fd62ccb6d083af075f1ab83da6bd76b8d (patch)
tree84f202c1873cfacbafa5fd7b150eff573b0550db
parent7eba8e98508d547f43fecbe3175a11a05956b30a (diff)
tdf#118153 VBA Macro: add XLSX support to Workbooks.Open
by accepting "MS Excel 2007 XML" in isSpreadSheetFile(). Test example: Workbooks.Open Filename:="/tmp/test.xlsx" Change-Id: Id7102325c96842bb413b1fb7bb8162e8bca41f4e Reviewed-on: https://gerrit.libreoffice.org/57030 Reviewed-by: László Németh <nemeth@numbertext.org> Tested-by: László Németh <nemeth@numbertext.org>
-rw-r--r--sc/source/ui/vba/vbaworkbooks.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/sc/source/ui/vba/vbaworkbooks.cxx b/sc/source/ui/vba/vbaworkbooks.cxx
index 03be645b2487..9ca8f9610eea 100644
--- a/sc/source/ui/vba/vbaworkbooks.cxx
+++ b/sc/source/ui/vba/vbaworkbooks.cxx
@@ -169,6 +169,7 @@ ScVbaWorkbooks::isSpreadSheetFile( const OUString& sType )
{
// include calc_QPro etc. ? ( not for the moment anyway )
return sType.startsWith( "calc_MS" )
+ || sType.startsWith( "MS Excel" )
|| sType.startsWith( "calc8" )
|| sType.startsWith( "calc_StarOffice" );
}