INTEGRATION: CWS scriptingf10 (1.4.4); FILE MERGED

2005/01/12 14:03:59 toconnor 1.4.4.1: #i40429# remove OSL_TRACE calls before beta
This commit is contained in:
Rüdiger Timm
2005-01-27 14:32:17 +00:00
parent 20ff3a26d7
commit c35a30be1f

View File

@@ -2,9 +2,9 @@
*
* $RCSfile: MasterScriptProviderFactory.cxx,v $
*
* $Revision: 1.4 $
* $Revision: 1.5 $
*
* last change: $Author: vg $ $Date: 2004-12-23 11:50:28 $
* last change: $Author: rt $ $Date: 2005-01-27 15:32:17 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -85,12 +85,10 @@ MasterScriptProviderFactory::MasterScriptProviderFactory(
Reference< XComponentContext > const & xComponentContext )
: m_xComponentContext( xComponentContext ), m_MSPList(0)
{
OSL_TRACE("MasterScriptProviderFactory is being created!");
}
MasterScriptProviderFactory::~MasterScriptProviderFactory()
{
OSL_TRACE("MasterScriptProviderFactory is being destructed!");
if (m_MSPList) delete m_MSPList;
}
@@ -103,7 +101,6 @@ MasterScriptProviderFactory::~MasterScriptProviderFactory()
Reference< provider::XScriptProvider > SAL_CALL
MasterScriptProviderFactory::createScriptProvider( const Any& context ) throw ( lang::IllegalArgumentException, RuntimeException)
{
OSL_TRACE("In MasterScriptProviderFactory::createScriptProvider()" );
Reference< provider::XScriptProvider > xMsp( getActiveMSPList().createMSP( context ), UNO_QUERY_THROW );
return xMsp;
}