diff options
author | Noel Grandin <noel@peralex.com> | 2016-05-24 11:02:42 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-05-24 11:02:42 +0200 |
commit | 95d20a3799998b9816bd2e8aebdbc96c61cead3e (patch) | |
tree | 8206ecc848631432cb8b027d5e780483734f808a /include | |
parent | 3caf31b05d7bbf3d50a1bbda6c8b95982cb5c2b5 (diff) |
Revert "remove some manual ref-counting"
until I have a better understanding of the UNO reference
counting.
This reverts commit 111de438ea3e512a541281dc0716cc728ea8d152.
Diffstat (limited to 'include')
-rw-r--r-- | include/comphelper/accessiblewrapper.hxx | 3 | ||||
-rw-r--r-- | include/framework/interaction.hxx | 2 | ||||
-rw-r--r-- | include/sfx2/brokenpackageint.hxx | 4 | ||||
-rw-r--r-- | include/ucbhelper/proxydecider.hxx | 2 |
4 files changed, 5 insertions, 6 deletions
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<OWrappedAccessibleChildrenManager> - 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<RequestFilterSelect_Impl> 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<RequestPackageReparation_Impl> 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<NotifyBrokenPackage_Impl> 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<proxydecider_impl::InternetProxyDecider_Impl> m_xImpl; + proxydecider_impl::InternetProxyDecider_Impl * m_pImpl; }; } // namespace ucbhelper |