summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2014-11-06 15:14:28 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2014-11-06 15:56:27 +0100
commitf355bad3a055c6369d1cae4afd0c02d181584b09 (patch)
tree0f7303ff7e0bdece354799de390358a553b96850
parentab2ed5a360e565299ae558b97bc39cf7aba1a81c (diff)
sw doc model dump: extend SwFmtFrmSize handling
Change-Id: I8b246e198f3b19e65feffb196afdecb1755a0581
-rw-r--r--sw/source/core/docnode/nodedump.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sw/source/core/docnode/nodedump.cxx b/sw/source/core/docnode/nodedump.cxx
index 90e356b64fd2..5ccf26b3c12d 100644
--- a/sw/source/core/docnode/nodedump.cxx
+++ b/sw/source/core/docnode/nodedump.cxx
@@ -478,7 +478,8 @@ void lcl_dumpSfxItemSet(WriterHelper& writer, const SfxItemSet* pSet)
{
pWhich = "frame size";
const SwFmtFrmSize* pSize = static_cast<const SwFmtFrmSize*>(pItem);
- oValue = "height size type: " + OString::number(pSize->GetHeightSizeType()) + ", width size type: " + OString::number(pSize->GetWidthSizeType());
+ oValue = "height size type: " + OString::number(pSize->GetHeightSizeType()) + ", height: " + OString::number(pSize->GetHeight())
+ + ", width size type: " + OString::number(pSize->GetWidthSizeType()) + ", width: " + OString::number(pSize->GetWidth());
break;
}
case RES_VERT_ORIENT: