diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 03:31:02 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 03:31:02 +0000 |
commit | fdf23e30d2f869e100e3bb0fbf1df204fa865867 (patch) | |
tree | 1e312c007a1ff4f2ac8d685b6e89c85841231188 /sal | |
parent | 878cd852b8e26ab4862ff5f2e25eb5cca1e4dd5a (diff) |
INTEGRATION: CWS warnings01 (1.7.116); FILE MERGED
2005/09/23 01:31:25 sb 1.7.116.2: RESYNC: (1.7-1.8); FILE MERGED
2005/08/30 17:03:18 sb 1.7.116.1: #i53898# Made code warning-free.
Diffstat (limited to 'sal')
-rw-r--r-- | sal/rtl/source/unload.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sal/rtl/source/unload.cxx b/sal/rtl/source/unload.cxx index 649d9883a341..6f9d5a1f50a4 100644 --- a/sal/rtl/source/unload.cxx +++ b/sal/rtl/source/unload.cxx @@ -4,9 +4,9 @@ * * $RCSfile: unload.cxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: rt $ $Date: 2005-09-08 16:06:43 $ + * last change: $Author: hr $ $Date: 2006-06-20 04:31:02 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -232,7 +232,7 @@ extern "C" sal_Bool SAL_CALL rtl_registerModuleForUnloading( oslModule module) // Test if the module supports unloading (exports component_canUnload) rtl::OUString name(RTL_CONSTASCII_USTRINGPARAM( COMPONENT_CANUNLOAD)); component_canUnloadFunc pFunc= - (component_canUnloadFunc)osl_getSymbol( module, name.pData); + (component_canUnloadFunc)osl_getFunctionSymbol( module, name.pData); if (pFunc) { //register module for the first time, set ref count to 1 |