Kaydet (Commit) d89d8169 authored tarafından Miklos Vajna's avatar Miklos Vajna

sw doc model xml dump: handle SwFmtFrmSize

Change-Id: Ie1a8dbc86c9725f3d238226c166ec657722c1770
üst ff4698da
...@@ -21,6 +21,7 @@ ...@@ -21,6 +21,7 @@
#include "fmtautofmt.hxx" #include "fmtautofmt.hxx"
#include "fmtcntnt.hxx" #include "fmtcntnt.hxx"
#include "fmtornt.hxx" #include "fmtornt.hxx"
#include "fmtfsize.hxx"
#include "charfmt.hxx" #include "charfmt.hxx"
#include "frmfmt.hxx" #include "frmfmt.hxx"
#include "fmtanchr.hxx" #include "fmtanchr.hxx"
...@@ -413,6 +414,8 @@ void lcl_dumpSfxItemSet(WriterHelper& writer, const SfxItemSet* pSet) ...@@ -413,6 +414,8 @@ void lcl_dumpSfxItemSet(WriterHelper& writer, const SfxItemSet* pSet)
case RES_FRM_SIZE: case RES_FRM_SIZE:
{ {
pWhich = "frame size"; 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());
break; break;
} }
case RES_VERT_ORIENT: case RES_VERT_ORIENT:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment