From bd84b356d4d817a933985e891112b62ca6815212 Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Fri, 24 Oct 2014 15:23:58 -0400 Subject: Make this member private. Nobody accesses it directly. Change-Id: Id00917198bda71eb80768526375eb83ba46dba11 --- svx/source/sdr/properties/properties.cxx | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'svx') diff --git a/svx/source/sdr/properties/properties.cxx b/svx/source/sdr/properties/properties.cxx index 9b8670f7030d..f4fd9c881b23 100644 --- a/svx/source/sdr/properties/properties.cxx +++ b/svx/source/sdr/properties/properties.cxx @@ -44,6 +44,16 @@ namespace sdr { } + const SdrObject& BaseProperties::GetSdrObject() const + { + return mrObject; + } + + SdrObject& BaseProperties::GetSdrObject() + { + return mrObject; + } + const SfxItemSet& BaseProperties::GetMergedItemSet() const { // default implementation falls back to GetObjectItemSet() -- cgit