summaryrefslogtreecommitdiff
path: root/svx/source/table
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/table')
-rw-r--r--svx/source/table/cell.cxx2
-rw-r--r--svx/source/table/svdotable.cxx4
-rw-r--r--svx/source/table/tablelayouter.cxx4
-rw-r--r--svx/source/table/tablemodel.cxx2
4 files changed, 6 insertions, 6 deletions
diff --git a/svx/source/table/cell.cxx b/svx/source/table/cell.cxx
index 38a29c2091d8..5eaa3f99b5b9 100644
--- a/svx/source/table/cell.cxx
+++ b/svx/source/table/cell.cxx
@@ -1644,7 +1644,7 @@ void SAL_CALL Cell::disposing( const EventObject& /*Source*/ ) throw (RuntimeExc
void Cell::dumpAsXml(struct _xmlTextWriter * pWriter, sal_Int32 nRow, sal_Int32 nCol) const
{
- xmlTextWriterStartElement(pWriter, BAD_CAST("cell"));
+ xmlTextWriterStartElement(pWriter, BAD_CAST("Cell"));
xmlTextWriterWriteFormatAttribute(pWriter, BAD_CAST("row"), "%" SAL_PRIdINT32, nRow);
xmlTextWriterWriteFormatAttribute(pWriter, BAD_CAST("col"), "%" SAL_PRIdINT32, nCol);
SdrText::dumpAsXml(pWriter);
diff --git a/svx/source/table/svdotable.cxx b/svx/source/table/svdotable.cxx
index 53f7a3bb8a9e..2c8a9907c967 100644
--- a/svx/source/table/svdotable.cxx
+++ b/svx/source/table/svdotable.cxx
@@ -632,7 +632,7 @@ bool SdrTableObjImpl::isInUse()
void SdrTableObjImpl::dumpAsXml(xmlTextWriterPtr pWriter) const
{
- xmlTextWriterStartElement(pWriter, BAD_CAST("sdrTableObjImpl"));
+ xmlTextWriterStartElement(pWriter, BAD_CAST("SdrTableObjImpl"));
if (mpLayouter)
mpLayouter->dumpAsXml(pWriter);
mxTable->dumpAsXml(pWriter);
@@ -2457,7 +2457,7 @@ void SdrTableObj::uno_unlock()
void SdrTableObj::dumpAsXml(xmlTextWriterPtr pWriter) const
{
- xmlTextWriterStartElement(pWriter, BAD_CAST("sdrTableObj"));
+ xmlTextWriterStartElement(pWriter, BAD_CAST("SdrTableObj"));
xmlTextWriterWriteFormatAttribute(pWriter, BAD_CAST("ptr"), "%p", this);
SdrObject::dumpAsXml(pWriter);
diff --git a/svx/source/table/tablelayouter.cxx b/svx/source/table/tablelayouter.cxx
index 9ad0447684e6..e90c19999fcf 100644
--- a/svx/source/table/tablelayouter.cxx
+++ b/svx/source/table/tablelayouter.cxx
@@ -1124,7 +1124,7 @@ void TableLayouter::DistributeRows( ::Rectangle& rArea, sal_Int32 nFirstRow, sal
void TableLayouter::dumpAsXml(xmlTextWriterPtr pWriter) const
{
- xmlTextWriterStartElement(pWriter, BAD_CAST("tableLayouter"));
+ xmlTextWriterStartElement(pWriter, BAD_CAST("TableLayouter"));
xmlTextWriterStartElement(pWriter, BAD_CAST("columns"));
for (const auto& rColumn : maColumns)
@@ -1141,7 +1141,7 @@ void TableLayouter::dumpAsXml(xmlTextWriterPtr pWriter) const
void TableLayouter::Layout::dumpAsXml(xmlTextWriterPtr pWriter) const
{
- xmlTextWriterStartElement(pWriter, BAD_CAST("layout"));
+ xmlTextWriterStartElement(pWriter, BAD_CAST("TableLayouter_Layout"));
xmlTextWriterWriteAttribute(pWriter, BAD_CAST("pos"), BAD_CAST(OString::number(mnPos).getStr()));
xmlTextWriterWriteAttribute(pWriter, BAD_CAST("size"), BAD_CAST(OString::number(mnSize).getStr()));
diff --git a/svx/source/table/tablemodel.cxx b/svx/source/table/tablemodel.cxx
index 65ee911f4bb2..b0274ad65a67 100644
--- a/svx/source/table/tablemodel.cxx
+++ b/svx/source/table/tablemodel.cxx
@@ -1126,7 +1126,7 @@ void TableModel::updateColumns()
void TableModel::dumpAsXml(struct _xmlTextWriter * pWriter) const
{
- xmlTextWriterStartElement(pWriter, BAD_CAST("tableModel"));
+ xmlTextWriterStartElement(pWriter, BAD_CAST("TableModel"));
for (sal_Int32 nRow = 0; nRow < getRowCountImpl(); ++nRow)
for (sal_Int32 nCol = 0; nCol < getColumnCountImpl(); ++nCol)
{