loplugin:salcall (Extension_test-{active,passive})
Change-Id: I4cb850a4ceb44dfe2807afe38f3fa131e6590932
This commit is contained in:
parent
495ad1e211
commit
3c9c9c54e1
2 changed files with 5 additions and 5 deletions
|
@ -234,21 +234,21 @@ static cppu::ImplementationEntry const services[] = {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
extern "C" SAL_DLLPUBLIC_EXPORT void * SAL_CALL component_getFactory(
|
extern "C" SAL_DLLPUBLIC_EXPORT void * component_getFactory(
|
||||||
char const * pImplName, void * pServiceManager, void * pRegistryKey)
|
char const * pImplName, void * pServiceManager, void * pRegistryKey)
|
||||||
{
|
{
|
||||||
return cppu::component_getFactoryHelper(
|
return cppu::component_getFactoryHelper(
|
||||||
pImplName, pServiceManager, pRegistryKey, services);
|
pImplName, pServiceManager, pRegistryKey, services);
|
||||||
}
|
}
|
||||||
|
|
||||||
extern "C" SAL_DLLPUBLIC_EXPORT void SAL_CALL
|
extern "C" SAL_DLLPUBLIC_EXPORT void
|
||||||
component_getImplementationEnvironment(
|
component_getImplementationEnvironment(
|
||||||
char const ** ppEnvTypeName, uno_Environment **)
|
char const ** ppEnvTypeName, uno_Environment **)
|
||||||
{
|
{
|
||||||
*ppEnvTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME;
|
*ppEnvTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME;
|
||||||
}
|
}
|
||||||
|
|
||||||
extern "C" SAL_DLLPUBLIC_EXPORT sal_Bool SAL_CALL component_writeInfo(
|
extern "C" SAL_DLLPUBLIC_EXPORT sal_Bool component_writeInfo(
|
||||||
void * pServiceManager, void * pRegistryKey)
|
void * pServiceManager, void * pRegistryKey)
|
||||||
{
|
{
|
||||||
if (!component_writeInfoHelper(pServiceManager, pRegistryKey, services)) {
|
if (!component_writeInfoHelper(pServiceManager, pRegistryKey, services)) {
|
||||||
|
|
|
@ -231,14 +231,14 @@ static cppu::ImplementationEntry const services[] = {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
extern "C" SAL_DLLPUBLIC_EXPORT void * SAL_CALL component_getFactory(
|
extern "C" SAL_DLLPUBLIC_EXPORT void * component_getFactory(
|
||||||
char const * pImplName, void * pServiceManager, void * pRegistryKey)
|
char const * pImplName, void * pServiceManager, void * pRegistryKey)
|
||||||
{
|
{
|
||||||
return cppu::component_getFactoryHelper(
|
return cppu::component_getFactoryHelper(
|
||||||
pImplName, pServiceManager, pRegistryKey, services);
|
pImplName, pServiceManager, pRegistryKey, services);
|
||||||
}
|
}
|
||||||
|
|
||||||
extern "C" SAL_DLLPUBLIC_EXPORT void SAL_CALL
|
extern "C" SAL_DLLPUBLIC_EXPORT void
|
||||||
component_getImplementationEnvironment(
|
component_getImplementationEnvironment(
|
||||||
char const ** ppEnvTypeName, uno_Environment **)
|
char const ** ppEnvTypeName, uno_Environment **)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue