diff options
Diffstat (limited to 'sw/source/uibase/shells/textsh.cxx')
-rw-r--r-- | sw/source/uibase/shells/textsh.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/uibase/shells/textsh.cxx b/sw/source/uibase/shells/textsh.cxx index ce4fa5dd2767..c2747c86243e 100644 --- a/sw/source/uibase/shells/textsh.cxx +++ b/sw/source/uibase/shells/textsh.cxx @@ -294,10 +294,10 @@ void SwTextShell::ExecInsert(SfxRequest &rReq) if ( pMarginItem ) { xSet->setPropertyValue("FrameMarginWidth", - uno::makeAny( aMargin.Width() ) ); + uno::makeAny( sal_Int32( aMargin.Width() ) ) ); xSet->setPropertyValue("FrameMarginHeight", - uno::makeAny( aMargin.Height() ) ); + uno::makeAny( sal_Int32( aMargin.Height() ) ) ); } } catch (const uno::Exception&) |