diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-02-05 13:58:35 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-02-05 13:58:35 +0100 |
commit | 32632975a3d88b6a8d6fad31f541b41527abe141 (patch) | |
tree | 2b982f360e8db5e6b3c19745278e2854746a008f /sd/source | |
parent | 7078f667a3e39601c6d135e311de67fbab289a2b (diff) |
No need for rtl::Reference here
Change-Id: I9c31d91dab2bc47148c0439947c331e411159891
Diffstat (limited to 'sd/source')
-rw-r--r-- | sd/source/ui/unoidl/unoobj.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/unoidl/unoobj.cxx b/sd/source/ui/unoidl/unoobj.cxx index 59aeaa2d29e9..efb6f2cd8149 100644 --- a/sd/source/ui/unoidl/unoobj.cxx +++ b/sd/source/ui/unoidl/unoobj.cxx @@ -422,7 +422,7 @@ uno::Any SAL_CALL SdXShape::getPropertyDefault( const OUString& aPropertyName ) throw(::com::sun::star::uno::RuntimeException) { sal_uIntPtr nObjId = reinterpret_cast<sal_uIntPtr>(mpShape->getPropertyMapEntries()); - rtl::Reference<SfxExtItemPropertySetInfo> pInfo; + css::uno::Reference<css::beans::XPropertySetInfo> pInfo; SdExtPropertySetInfoCache& rCache = (mpModel && mpModel->IsImpressDocument()) ? SD_MOD()->gImplImpressPropertySetInfoCache : SD_MOD()->gImplDrawPropertySetInfoCache; @@ -441,7 +441,7 @@ uno::Any SAL_CALL SdXShape::getPropertyDefault( const OUString& aPropertyName ) pInfo = (*aIter).second; } - return pInfo.get(); + return pInfo; } void SAL_CALL SdXShape::setPropertyValue( const OUString& aPropertyName, const ::com::sun::star::uno::Any& aValue ) |