[Libreoffice-commits] core.git: Branch 'libreoffice-6-1' - sc/source
bvarga91
balazs.varga991 at gmail.com
Tue Jul 10 00:20:53 UTC 2018
sc/source/ui/vba/vbaworkbooks.cxx | 1 +
1 file changed, 1 insertion(+)
New commits:
commit 9837faeaab59e030e500ed21da92dd6bed2806fe
Author: bvarga91 <balazs.varga991 at gmail.com>
Date: Thu Jul 5 23:14:01 2018 +0200
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 at numbertext.org>
Tested-by: László Németh <nemeth at numbertext.org>
(cherry picked from commit fc434c8fd62ccb6d083af075f1ab83da6bd76b8d)
Reviewed-on: https://gerrit.libreoffice.org/57174
Tested-by: Jenkins
Reviewed-by: Markus Mohrhard <markus.mohrhard at googlemail.com>
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" );
}
More information about the Libreoffice-commits
mailing list