summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2014-05-16 13:45:56 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2014-05-16 14:53:42 +0200
commit942156b1ed7d0cd27c18960bf4cf874689e9aa0a (patch)
tree7ef2bab1e3a64632e84fb482fb9a7c332a38b366
parentfcfa1b7e1f643f97ca81edd199b9d67d37411adc (diff)
sw doc model dump: show SdrObject::nOrdNum
Change-Id: I4ac2c3d883dd9bb111a2d600f5a17ea96a1e219e
-rw-r--r--sw/source/core/docnode/nodedump.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/sw/source/core/docnode/nodedump.cxx b/sw/source/core/docnode/nodedump.cxx
index 31d98213369b..ab888ade7c43 100644
--- a/sw/source/core/docnode/nodedump.cxx
+++ b/sw/source/core/docnode/nodedump.cxx
@@ -146,6 +146,7 @@ void lcl_dumpSdrModel(WriterHelper& writer, const SdrModel* pModel)
writer.writeFormatAttribute("name", "%s", BAD_CAST(OUStringToOString(pObject->GetName(), RTL_TEXTENCODING_UTF8).getStr()));
writer.writeFormatAttribute("title", "%s", BAD_CAST(OUStringToOString(pObject->GetTitle(), RTL_TEXTENCODING_UTF8).getStr()));
writer.writeFormatAttribute("description", "%s", BAD_CAST(OUStringToOString(pObject->GetDescription(), RTL_TEXTENCODING_UTF8).getStr()));
+ writer.writeFormatAttribute("nOrdNum", TMP_FORMAT, pObject->GetOrdNumDirect());
const OutlinerParaObject* pOutliner = pObject->GetOutlinerParaObject();
writer.startElement("outliner");