diff options
Diffstat (limited to 'svx/source')
-rw-r--r-- | svx/source/svdraw/svdobj.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/svdraw/svdobj.cxx b/svx/source/svdraw/svdobj.cxx index eaa5abfa177a..3758426b974a 100644 --- a/svx/source/svdraw/svdobj.cxx +++ b/svx/source/svdraw/svdobj.cxx @@ -541,7 +541,7 @@ const double* SdrObject::GetRelativeWidth( ) const if (!mpImpl->mnRelativeWidth) return nullptr; - return &mpImpl->mnRelativeWidth.get(); + return &*mpImpl->mnRelativeWidth; } sal_Int16 SdrObject::GetRelativeWidthRelation() const @@ -554,7 +554,7 @@ const double* SdrObject::GetRelativeHeight( ) const if (!mpImpl->mnRelativeHeight) return nullptr; - return &mpImpl->mnRelativeHeight.get(); + return &*mpImpl->mnRelativeHeight; } sal_Int16 SdrObject::GetRelativeHeightRelation() const |