summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-04-18 09:05:31 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-04-18 13:03:22 +0100
commitabda3776191f04d1f3f3e9e4fc966455cc25d346 (patch)
tree7e2dca27537f8788569d9b940c0fa2198b2c5a1c /comphelper
parenteaa97f9a66ec147afab9b44cabcb220d564d54ec (diff)
callcatcher: update list
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/inc/comphelper/logging.hxx13
-rw-r--r--comphelper/source/misc/logging.cxx6
2 files changed, 0 insertions, 19 deletions
diff --git a/comphelper/inc/comphelper/logging.hxx b/comphelper/inc/comphelper/logging.hxx
index 5ad80ece3a79..2b1d03e30760 100644
--- a/comphelper/inc/comphelper/logging.hxx
+++ b/comphelper/inc/comphelper/logging.hxx
@@ -107,19 +107,6 @@ namespace comphelper
public:
/** creates an <code>EventLogger</code> instance working with a css.logging.XLogger
- instance given by name.
-
- @param _rxContext
- the component context to create services
- @param _rLoggerName
- the name of the logger to create. If empty, the office-wide default logger will be used.
- */
- EventLogger(
- const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& _rxContext,
- const ::rtl::OUString& _rLoggerName = ::rtl::OUString()
- );
-
- /** creates an <code>EventLogger</code> instance working with a css.logging.XLogger
instance given by ASCII name.
@param _rxContext
diff --git a/comphelper/source/misc/logging.cxx b/comphelper/source/misc/logging.cxx
index 98a497cc7498..a72d8c887f5e 100644
--- a/comphelper/source/misc/logging.cxx
+++ b/comphelper/source/misc/logging.cxx
@@ -110,12 +110,6 @@ namespace comphelper
//= EventLogger
//====================================================================
//--------------------------------------------------------------------
- EventLogger::EventLogger( const Reference< XComponentContext >& _rxContext, const ::rtl::OUString& _rLoggerName )
- :m_pImpl( new EventLogger_Impl( _rxContext, _rLoggerName ) )
- {
- }
-
- //--------------------------------------------------------------------
EventLogger::EventLogger( const Reference< XComponentContext >& _rxContext, const sal_Char* _pAsciiLoggerName )
:m_pImpl( new EventLogger_Impl( _rxContext, ::rtl::OUString::createFromAscii( _pAsciiLoggerName ) ) )
{