[Libreoffice-commits] core.git: sc/source
Rosemary Sebastian
rosemary.seb8 at gmail.com
Fri Jan 13 08:42:42 UTC 2017
sc/source/filter/excel/xedbdata.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 95cf7fa25d3b950e0cb576a1e864b54f1a43bc7a
Author: Rosemary Sebastian <rosemary.seb8 at gmail.com>
Date: Fri Jan 13 09:41:14 2017 +0100
tdf#105272: fix wrong namespace URL
regression from f1dcb8b3e2e01848d44dd1beb82cd4e6e68a2acd
Change-Id: I088894711617bd762bf4e9352ddf6d850a5cbe7b
diff --git a/sc/source/filter/excel/xedbdata.cxx b/sc/source/filter/excel/xedbdata.cxx
index 7c9d48a..92cb15b 100644
--- a/sc/source/filter/excel/xedbdata.cxx
+++ b/sc/source/filter/excel/xedbdata.cxx
@@ -181,7 +181,7 @@ void XclExpTables::SaveTableXml( XclExpXmlStream& rStrm, const Entry& rEntry )
rData.GetArea( aRange);
sax_fastparser::FSHelperPtr& pTableStrm = rStrm.GetCurrentStream();
pTableStrm->startElement( XML_table,
- XML_xmlns, XclXmlUtils::ToOString(rStrm.getNamespaceURL(OOX_NS(xls14Lst))).getStr(),
+ XML_xmlns, XclXmlUtils::ToOString(rStrm.getNamespaceURL(OOX_NS(xls))).getStr(),
XML_id, OString::number( rEntry.mnTableId).getStr(),
XML_name, XclXmlUtils::ToOString( rData.GetName()).getStr(),
XML_displayName, XclXmlUtils::ToOString( rData.GetName()).getStr(),
More information about the Libreoffice-commits
mailing list