summaryrefslogtreecommitdiffstats
path: root/framework/source/fwe/classes/actiontriggercontainer.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-01-04 13:38:11 +0200
committerNoel Grandin <noel@peralex.com>2013-01-09 08:08:16 +0200
commitb23fd68eeeddd6973f5ea79da4cf7638094ad8d4 (patch)
treee977427671a7fe58c5b7fb2e2aef2a03e2f7497a /framework/source/fwe/classes/actiontriggercontainer.cxx
parentfdo#46808, convert OGenericAdministrationPage::setServiceFactory (diff)
downloadcore-b23fd68eeeddd6973f5ea79da4cf7638094ad8d4.tar.gz
core-b23fd68eeeddd6973f5ea79da4cf7638094ad8d4.zip
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/source/fwe/classes/actiontriggercontainer.cxx')
-rw-r--r--framework/source/fwe/classes/actiontriggercontainer.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/framework/source/fwe/classes/actiontriggercontainer.cxx b/framework/source/fwe/classes/actiontriggercontainer.cxx
index 2f901583838b..0a2efcf76c46 100644
--- a/framework/source/fwe/classes/actiontriggercontainer.cxx
+++ b/framework/source/fwe/classes/actiontriggercontainer.cxx
@@ -31,8 +31,8 @@ using namespace com::sun::star::container;
namespace framework
{
-ActionTriggerContainer::ActionTriggerContainer( const Reference< XMultiServiceFactory >& rServiceManager ) :
- PropertySetContainer( rServiceManager )
+ActionTriggerContainer::ActionTriggerContainer() :
+ PropertySetContainer()
{
}
@@ -75,11 +75,11 @@ Reference< XInterface > SAL_CALL ActionTriggerContainer::createInstance( const :
throw ( ::com::sun::star::uno::Exception, RuntimeException)
{
if ( aServiceSpecifier.equalsAscii( SERVICENAME_ACTIONTRIGGER ))
- return (OWeakObject *)( new ActionTriggerPropertySet( m_xServiceManager ));
+ return (OWeakObject *)( new ActionTriggerPropertySet());
else if ( aServiceSpecifier.equalsAscii( SERVICENAME_ACTIONTRIGGERCONTAINER ))
- return (OWeakObject *)( new ActionTriggerContainer( m_xServiceManager ));
+ return (OWeakObject *)( new ActionTriggerContainer());
else if ( aServiceSpecifier.equalsAscii( SERVICENAME_ACTIONTRIGGERSEPARATOR ))
- return (OWeakObject *)( new ActionTriggerSeparatorPropertySet( m_xServiceManager ));
+ return (OWeakObject *)( new ActionTriggerSeparatorPropertySet());
else
throw com::sun::star::uno::RuntimeException( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Unknown service specifier!" )), (OWeakObject *)this );
}