summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/xfilter/xfheaderstyle.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/source/filter/xfilter/xfheaderstyle.cxx')
-rw-r--r--lotuswordpro/source/filter/xfilter/xfheaderstyle.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/lotuswordpro/source/filter/xfilter/xfheaderstyle.cxx b/lotuswordpro/source/filter/xfilter/xfheaderstyle.cxx
index f8c17cd2d316..eb061b6d55af 100644
--- a/lotuswordpro/source/filter/xfilter/xfheaderstyle.cxx
+++ b/lotuswordpro/source/filter/xfilter/xfheaderstyle.cxx
@@ -103,9 +103,9 @@ void XFHeaderStyle::SetShadow(XFShadow *pShadow)
m_pShadow.reset( pShadow );
}
-void XFHeaderStyle::SetBorders(XFBorders *pBorders)
+void XFHeaderStyle::SetBorders(std::unique_ptr<XFBorders> pBorders)
{
- m_pBorders.reset(pBorders);
+ m_pBorders = std::move(pBorders);
}
void XFHeaderStyle::SetBackImage(std::unique_ptr<XFBGImage>& rImage)