summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2011-12-27 15:43:29 +0100
committerDavid Tardon <dtardon@redhat.com>2011-12-27 15:44:42 +0100
commitac6b7001773a76a210b26a1f2231c1ff5f06e91c (patch)
treef365c4d06f0f53ce3a567faab99399f9a00b3cb3
parentaee436760e97f5f00e416713f8ee31f07681e2b1 (diff)
function component_canUnload is SAL_CALL
-rw-r--r--extensions/source/ole/servreg.cxx2
-rw-r--r--sal/test/unloading/samplelib1.cxx2
-rw-r--r--sal/test/unloading/samplelib2.cxx2
3 files changed, 3 insertions, 3 deletions
diff --git a/extensions/source/ole/servreg.cxx b/extensions/source/ole/servreg.cxx
index 8b8d2c2add94..c7ebaa8c7569 100644
--- a/extensions/source/ole/servreg.cxx
+++ b/extensions/source/ole/servreg.cxx
@@ -118,7 +118,7 @@ extern "C" SAL_DLLPUBLIC_EXPORT void * SAL_CALL component_getFactory(
return pRet;
}
-extern "C" SAL_DLLPUBLIC_EXPORT sal_Bool component_canUnload( TimeValue* libUnused)
+extern "C" SAL_DLLPUBLIC_EXPORT sal_Bool SAL_CALL component_canUnload( TimeValue* libUnused)
{
return globalModuleCount.canUnload( &globalModuleCount, libUnused);
}
diff --git a/sal/test/unloading/samplelib1.cxx b/sal/test/unloading/samplelib1.cxx
index e612a9ed1ba6..78835cdcc7fe 100644
--- a/sal/test/unloading/samplelib1.cxx
+++ b/sal/test/unloading/samplelib1.cxx
@@ -257,7 +257,7 @@ extern "C" {
return pRet;
}
- SAL_DLLPUBLIC_EXPORT sal_Bool component_canUnload( TimeValue* libUnused)
+ SAL_DLLPUBLIC_EXPORT sal_Bool SAL_CALL component_canUnload( TimeValue* libUnused)
{
return globalModuleCount.canUnload( &globalModuleCount, libUnused);
}
diff --git a/sal/test/unloading/samplelib2.cxx b/sal/test/unloading/samplelib2.cxx
index 0cf7d564b61b..142472a04cb9 100644
--- a/sal/test/unloading/samplelib2.cxx
+++ b/sal/test/unloading/samplelib2.cxx
@@ -224,7 +224,7 @@ extern "C" {
return pRet;
}
- SAL_DLLPUBLIC_EXPORT sal_Bool component_canUnload( TimeValue* libUnused)
+ SAL_DLLPUBLIC_EXPORT sal_Bool SAL_CALL component_canUnload( TimeValue* libUnused)
{
return globalModuleCount.canUnload( &globalModuleCount, libUnused);
}