Kaydet (Commit) a070a1b6 authored tarafından Oliver Bolte's avatar Oliver Bolte

INTEGRATION: CWS sb59 (1.5.52); FILE MERGED

2006/07/20 07:55:34 sb 1.5.52.1: #i67537# Made code warning-free.
üst d68950c3
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
* *
* $RCSfile: acceptor.cxx,v $ * $RCSfile: acceptor.cxx,v $
* *
* $Revision: 1.6 $ * $Revision: 1.7 $
* *
* last change: $Author: obo $ $Date: 2006-09-17 09:47:08 $ * last change: $Author: obo $ $Date: 2006-10-12 14:14:59 $
* *
* The Contents of this file are made available subject to * The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1. * the terms of GNU Lesser General Public License Version 2.1.
...@@ -180,7 +180,7 @@ void SAL_CALL Acceptor::initialize( const Sequence<Any>& aArguments ) ...@@ -180,7 +180,7 @@ void SAL_CALL Acceptor::initialize( const Sequence<Any>& aArguments )
m_aProtocol = m_aAcceptString.copy( nIndex1, nIndex2 - nIndex1 ); m_aProtocol = m_aAcceptString.copy( nIndex1, nIndex2 - nIndex1 );
// start accepting in new thread... // start accepting in new thread...
oslThread m_aThread = osl_createThread(workerfunc, this); osl_createThread(workerfunc, this);
m_bInit = sal_True; m_bInit = sal_True;
bOk = sal_True; bOk = sal_True;
} }
...@@ -230,14 +230,10 @@ Sequence<OUString> SAL_CALL Acceptor::getSupportedServiceNames() ...@@ -230,14 +230,10 @@ Sequence<OUString> SAL_CALL Acceptor::getSupportedServiceNames()
{ {
return Acceptor::impl_getSupportedServiceNames(); return Acceptor::impl_getSupportedServiceNames();
} }
sal_Bool Acceptor::impl_supportsService( const OUString& aServiceName) sal_Bool SAL_CALL Acceptor::supportsService( const OUString&)
{
return sal_False;
}
sal_Bool SAL_CALL Acceptor::supportsService( const OUString& aServiceName)
throw (RuntimeException) throw (RuntimeException)
{ {
return Acceptor::impl_supportsService( aServiceName ); return sal_False;
} }
// Factory // Factory
...@@ -313,7 +309,7 @@ extern "C" ...@@ -313,7 +309,7 @@ extern "C"
using namespace desktop; using namespace desktop;
void SAL_CALL void SAL_CALL
component_getImplementationEnvironment(const sal_Char **ppEnvironmentTypeName, uno_Environment **ppEnvironment) component_getImplementationEnvironment(const sal_Char **ppEnvironmentTypeName, uno_Environment **)
{ {
*ppEnvironmentTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME ; *ppEnvironmentTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME ;
} }
...@@ -336,7 +332,7 @@ component_writeInfo(void *pServiceManager, void *pRegistryKey) ...@@ -336,7 +332,7 @@ component_writeInfo(void *pServiceManager, void *pRegistryKey)
} }
void * SAL_CALL void * SAL_CALL
component_getFactory(const sal_Char *pImplementationName, void *pServiceManager, void *pRegistryKey) component_getFactory(const sal_Char *pImplementationName, void *pServiceManager, void *)
{ {
void* pReturn = NULL ; void* pReturn = NULL ;
if ( pImplementationName && pServiceManager ) if ( pImplementationName && pServiceManager )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment