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-07 01:13:52 +0100
commit06344c91dbc8826fc64698e06a6c66fb3e8a19e9 (patch)
tree39b0913ea62b6220c38aa6db559ea31be397df75
parent8e417a8fed528034e946bd25e66ce346c1b5384d (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 fb5b812bfdfa..1fb984f81b38 100644
--- a/include/xmloff/xmltoken.hxx
+++ b/include/xmloff/xmltoken.hxx
@@ -2617,7 +2617,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,
XML_DATA_PILOT_GROUP_MEMBER,
diff --git a/sc/source/filter/xml/XMLExportDataPilot.cxx b/sc/source/filter/xml/XMLExportDataPilot.cxx
index 2d5c42cee3a3..868202f15cf0 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 82232b87f81a..91d20c5afa96 100644
--- a/xmloff/source/core/xmltoken.cxx
+++ b/xmloff/source/core/xmltoken.cxx
@@ -2622,7 +2622,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( "data-pilot-group-member", XML_DATA_PILOT_GROUP_MEMBER ),