summaryrefslogtreecommitdiff
path: root/remotebridges/source
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2004-08-23 08:16:23 +0000
committerRüdiger Timm <rt@openoffice.org>2004-08-23 08:16:23 +0000
commitdcb9728ad6df8ad500be34ef250c41c8d7a0268e (patch)
tree585bdfa251b39005571344c8d1d6d9d12bd7e1c6 /remotebridges/source
parent08a50e5b9ad82942282ca7ecc7817a7695b10b88 (diff)
INTEGRATION: CWS tune03 (1.4.72); FILE MERGED
2004/07/22 20:09:40 mhu 1.4.72.1: #i29979# Removed use of old-style SAL_DLLEXPORT macro (see @ sal/types.h)
Diffstat (limited to 'remotebridges/source')
-rw-r--r--remotebridges/source/dynamicloader/dynamicloader.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/remotebridges/source/dynamicloader/dynamicloader.cxx b/remotebridges/source/dynamicloader/dynamicloader.cxx
index d080a3061324..dcd86b754b1a 100644
--- a/remotebridges/source/dynamicloader/dynamicloader.cxx
+++ b/remotebridges/source/dynamicloader/dynamicloader.cxx
@@ -377,11 +377,11 @@ namespace dynamic_loader {
extern "C" {
- SAL_DLLEXPORT void SAL_CALL component_getImplementationEnvironment(const sal_Char ** ppEnvTypeName, uno_Environment ** ppEnv) {
+ void SAL_CALL component_getImplementationEnvironment(const sal_Char ** ppEnvTypeName, uno_Environment ** ppEnv) {
*ppEnvTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME;
}
- SAL_DLLEXPORT sal_Bool SAL_CALL component_writeInfo(XMultiServiceFactory * pServiceManager, XRegistryKey * pRegistryKey) {
+ sal_Bool SAL_CALL component_writeInfo(XMultiServiceFactory * pServiceManager, XRegistryKey * pRegistryKey) {
sal_Bool bRes = sal_False;
if (pRegistryKey) {
@@ -409,7 +409,7 @@ extern "C" {
return bRes;
}
- SAL_DLLEXPORT void * SAL_CALL component_getFactory(const sal_Char * pImplName, XMultiServiceFactory * pServiceManager, XRegistryKey * pRegistryKey) {
+ void * SAL_CALL component_getFactory(const sal_Char * pImplName, XMultiServiceFactory * pServiceManager, XRegistryKey * pRegistryKey) {
void * pRet = 0;
if (pServiceManager && OUString::createFromAscii(pImplName).equals(::dynamic_loader::DynamicLoader::implname)) {