diff options
author | Noel Grandin <noel@peralex.com> | 2013-01-04 13:38:11 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-01-09 08:08:16 +0200 |
commit | b23fd68eeeddd6973f5ea79da4cf7638094ad8d4 (patch) | |
tree | e977427671a7fe58c5b7fb2e2aef2a03e2f7497a /framework/inc/helper/propertysetcontainer.hxx | |
parent | e88e974e7cd9d92ca338ba6c56baa0aa9a4b0636 (diff) |
fdo#468080, remove unnecessary XMultiServiceFactory from framework
The ActionTrigger classes in framework were not using their
XMultiServiceFactory parameters, so remove them.
And follow that through by cleaning up places that no longer
need to store XMultiServiceFactory references.
Change-Id: I433c4fdb02a56eeef75728893e0c9b749d8313be
Diffstat (limited to 'framework/inc/helper/propertysetcontainer.hxx')
-rw-r--r-- | framework/inc/helper/propertysetcontainer.hxx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/framework/inc/helper/propertysetcontainer.hxx b/framework/inc/helper/propertysetcontainer.hxx index 2cff66e4253e..27d453b23ea5 100644 --- a/framework/inc/helper/propertysetcontainer.hxx +++ b/framework/inc/helper/propertysetcontainer.hxx @@ -25,7 +25,6 @@ */ #include <vector> #include <cppuhelper/weak.hxx> -#include <com/sun/star/lang/XMultiServiceFactory.hpp> #include <com/sun/star/container/XIndexContainer.hpp> #include <com/sun/star/beans/XPropertySet.hpp> #include <threadhelp/threadhelpbase.hxx> @@ -39,7 +38,7 @@ class FWE_DLLPUBLIC PropertySetContainer : public com::sun::star::container::XIn public ::cppu::OWeakObject { public: - PropertySetContainer( const com::sun::star::uno::Reference< com::sun::star::lang::XMultiServiceFactory >& ); + PropertySetContainer(); virtual ~PropertySetContainer(); // XInterface @@ -76,9 +75,6 @@ class FWE_DLLPUBLIC PropertySetContainer : public com::sun::star::container::XIn virtual sal_Bool SAL_CALL hasElements() throw (::com::sun::star::uno::RuntimeException); - protected: - com::sun::star::uno::Reference< com::sun::star::lang::XMultiServiceFactory > m_xServiceManager; - private: typedef std::vector< com::sun::star::uno::Reference< com::sun::star::beans::XPropertySet > > PropertySetVector; PropertySetVector m_aPropertySetVector; |