diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-10-24 15:23:58 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2014-11-04 12:30:38 -0500 |
commit | bd84b356d4d817a933985e891112b62ca6815212 (patch) | |
tree | a67e1dcada8ae73a3bd18871993825fabf1ab708 /svx | |
parent | 3f1b1f7f08effe21a5b7443ab19c5f19fb660ed8 (diff) |
Make this member private. Nobody accesses it directly.
Change-Id: Id00917198bda71eb80768526375eb83ba46dba11
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/sdr/properties/properties.cxx | 10 |
1 files changed, 10 insertions, 0 deletions
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() |