From 95d20a3799998b9816bd2e8aebdbc96c61cead3e Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 24 May 2016 11:02:42 +0200 Subject: Revert "remove some manual ref-counting" until I have a better understanding of the UNO reference counting. This reverts commit 111de438ea3e512a541281dc0716cc728ea8d152. --- include/comphelper/accessiblewrapper.hxx | 3 +-- include/framework/interaction.hxx | 2 +- include/sfx2/brokenpackageint.hxx | 4 ++-- include/ucbhelper/proxydecider.hxx | 2 +- 4 files changed, 5 insertions(+), 6 deletions(-) (limited to 'include') diff --git a/include/comphelper/accessiblewrapper.hxx b/include/comphelper/accessiblewrapper.hxx index e3aa2feff03b..3b808724f933 100644 --- a/include/comphelper/accessiblewrapper.hxx +++ b/include/comphelper/accessiblewrapper.hxx @@ -156,8 +156,7 @@ namespace comphelper css::uno::Reference< css::accessibility::XAccessible > m_xParentAccessible; - css::uno::Reference - m_xChildMapper; // for mapping children from our inner context to our callers + OWrappedAccessibleChildrenManager* m_pChildMapper; // for mapping children from our inner context to our callers protected: /** ctor diff --git a/include/framework/interaction.hxx b/include/framework/interaction.hxx index ab7889c294ea..a57b3edc0e28 100644 --- a/include/framework/interaction.hxx +++ b/include/framework/interaction.hxx @@ -60,7 +60,7 @@ namespace framework{ class RequestFilterSelect_Impl; class FWE_DLLPUBLIC RequestFilterSelect { - css::uno::Reference mxImpl; + RequestFilterSelect_Impl* pImp; public: RequestFilterSelect( const OUString& sURL ); diff --git a/include/sfx2/brokenpackageint.hxx b/include/sfx2/brokenpackageint.hxx index ddfe7157dbf2..68cb33022608 100644 --- a/include/sfx2/brokenpackageint.hxx +++ b/include/sfx2/brokenpackageint.hxx @@ -29,7 +29,7 @@ class RequestPackageReparation_Impl; class SFX2_DLLPUBLIC RequestPackageReparation { - css::uno::Reference mxImpl; + RequestPackageReparation_Impl* pImp; public: RequestPackageReparation( const OUString& aName ); ~RequestPackageReparation(); @@ -40,7 +40,7 @@ public: class NotifyBrokenPackage_Impl; class SFX2_DLLPUBLIC NotifyBrokenPackage { - css::uno::Reference mxImpl; + NotifyBrokenPackage_Impl* pImp; public: NotifyBrokenPackage( const OUString& aName ); ~NotifyBrokenPackage(); diff --git a/include/ucbhelper/proxydecider.hxx b/include/ucbhelper/proxydecider.hxx index 4bb62f13c5ff..aa19d483fcc9 100644 --- a/include/ucbhelper/proxydecider.hxx +++ b/include/ucbhelper/proxydecider.hxx @@ -127,7 +127,7 @@ public: sal_Int32 nPort ) const; private: - css::uno::Reference m_xImpl; + proxydecider_impl::InternetProxyDecider_Impl * m_pImpl; }; } // namespace ucbhelper -- cgit