summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-12-07 00:41:44 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-12-08 01:04:20 +0100
commitd981c7fa5500dab0d24a36506e706f4a40edf075 (patch)
tree74c03d93e07ae2bf8b567f4e75ee9dd8acb2f85e
parentcbd8ae9e9c0fb5b936264dc8956854184e70ca7f (diff)
remove invalid attribute that is not read anyway
Change-Id: Id7770ffda49ba7bc0ebc780c67c56b81152213f7
-rw-r--r--include/xmloff/xmltoken.hxx1
-rw-r--r--sc/source/filter/xml/XMLExportDataPilot.cxx2
-rw-r--r--xmloff/source/core/xmltoken.cxx1
3 files changed, 0 insertions, 4 deletions
diff --git a/include/xmloff/xmltoken.hxx b/include/xmloff/xmltoken.hxx
index 6dd7d1ca4494..88da5691ecb7 100644
--- a/include/xmloff/xmltoken.hxx
+++ b/include/xmloff/xmltoken.hxx
@@ -2609,7 +2609,6 @@ namespace xmloff { namespace token {
XML_DATE_START,
XML_DATE_END,
XML_STEP,
- XML_IS_GROUP_FIELD,
XML_DATA_PILOT_GROUPS,
XML_DATA_PILOT_GROUP,
diff --git a/sc/source/filter/xml/XMLExportDataPilot.cxx b/sc/source/filter/xml/XMLExportDataPilot.cxx
index cd711d4b0edb..4b9c9136652b 100644
--- a/sc/source/filter/xml/XMLExportDataPilot.cxx
+++ b/sc/source/filter/xml/XMLExportDataPilot.cxx
@@ -599,7 +599,6 @@ void ScXMLExportDataPilot::WriteGroupDimAttributes(const ScDPSaveGroupDimension*
if (pGroupDim)
{
OUString aSrcFieldName = ScDPUtil::getSourceDimensionName(pGroupDim->GetSourceDimName());
- rExport.AddAttribute(XML_NAMESPACE_TABLE, XML_IS_GROUP_FIELD, XML_TRUE);
rExport.AddAttribute(XML_NAMESPACE_TABLE, XML_SOURCE_FIELD_NAME, aSrcFieldName);
if (pGroupDim->GetDatePart())
{
@@ -613,7 +612,6 @@ void ScXMLExportDataPilot::WriteNumGroupDim(const ScDPSaveNumGroupDimension* pNu
{
if (pNumGroupDim)
{
- rExport.AddAttribute(XML_NAMESPACE_TABLE, XML_IS_GROUP_FIELD, XML_TRUE);
if (pNumGroupDim->GetDatePart())
{
WriteDatePart(pNumGroupDim->GetDatePart());
diff --git a/xmloff/source/core/xmltoken.cxx b/xmloff/source/core/xmltoken.cxx
index 555f24b88688..e39814d571fa 100644
--- a/xmloff/source/core/xmltoken.cxx
+++ b/xmloff/source/core/xmltoken.cxx
@@ -2614,7 +2614,6 @@ namespace xmloff { namespace token {
TOKEN( "date-start", XML_DATE_START ),
TOKEN( "date-end", XML_DATE_END ),
TOKEN( "step", XML_STEP ),
- TOKEN( "is-group-field", XML_IS_GROUP_FIELD ),
TOKEN( "data-pilot-groups", XML_DATA_PILOT_GROUPS ),
TOKEN( "data-pilot-group", XML_DATA_PILOT_GROUP ),
TOKEN( "japanese-candle-stick", XML_JAPANESE_CANDLE_STICK ),