summaryrefslogtreecommitdiffstats
path: root/sd/source/ui/unoidl/DrawController.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/ui/unoidl/DrawController.cxx')
-rw-r--r--sd/source/ui/unoidl/DrawController.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/unoidl/DrawController.cxx b/sd/source/ui/unoidl/DrawController.cxx
index 915c804ff91e..8f7cd937efa4 100644
--- a/sd/source/ui/unoidl/DrawController.cxx
+++ b/sd/source/ui/unoidl/DrawController.cxx
@@ -642,14 +642,14 @@ IPropertyArrayHelper & DrawController::getInfoHelper()
{
SolarMutexGuard aGuard;
- if (mpPropertyArrayHelper.get() == nullptr)
+ if (mpPropertyArrayHelper == nullptr)
{
::std::vector<beans::Property> aProperties;
FillPropertyTable(aProperties);
mpPropertyArrayHelper.reset(new OPropertyArrayHelper(comphelper::containerToSequence(aProperties), false));
}
- return *mpPropertyArrayHelper.get();
+ return *mpPropertyArrayHelper;
}
Reference < beans::XPropertySetInfo > DrawController::getPropertySetInfo()