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

sw doc model dump: extend SwFmtFrmSize handling

Change-Id: I8b246e198f3b19e65feffb196afdecb1755a0581
üst ab2ed5a3
......@@ -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:
......
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