diff options
Diffstat (limited to 'sw/inc/fesh.hxx')
-rw-r--r-- | sw/inc/fesh.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/fesh.hxx b/sw/inc/fesh.hxx index 6bf34ba62f2c..5d45fa3e6621 100644 --- a/sw/inc/fesh.hxx +++ b/sw/inc/fesh.hxx @@ -647,10 +647,10 @@ public: void SetRowHeight( const SwFormatFrameSize &rSz ); /// Pointer must be destroyed by caller != 0. - void GetRowHeight( SwFormatFrameSize *&rpSz ) const; + std::unique_ptr<SwFormatFrameSize> GetRowHeight() const; void SetRowSplit( const SwFormatRowSplit &rSz ); - void GetRowSplit( SwFormatRowSplit *&rpSz ) const; + std::unique_ptr<SwFormatRowSplit> GetRowSplit() const; void SetBoxAlign( sal_uInt16 nOrient ); sal_uInt16 GetBoxAlign() const; ///< USHRT_MAX if ambiguous. |