summaryrefslogtreecommitdiff
path: root/scripting
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2005-01-27 14:32:17 +0000
committerRüdiger Timm <rt@openoffice.org>2005-01-27 14:32:17 +0000
commitc35a30be1fb724a3c3de390f30cb354873c13cfc (patch)
tree68bf9fc426f8759657498782ff7c5328da52dba9 /scripting
parent20ff3a26d7cbcd46f1d68ad705fd25751f4c2d8b (diff)
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
Diffstat (limited to 'scripting')
-rw-r--r--scripting/source/provider/MasterScriptProviderFactory.cxx7
1 files changed, 2 insertions, 5 deletions
diff --git a/scripting/source/provider/MasterScriptProviderFactory.cxx b/scripting/source/provider/MasterScriptProviderFactory.cxx
index ed9e0550fef8..af4312e316d0 100644
--- a/scripting/source/provider/MasterScriptProviderFactory.cxx
+++ b/scripting/source/provider/MasterScriptProviderFactory.cxx
@@ -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;
}