diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 03:11:35 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 03:11:35 +0000 |
commit | a2bb40ea03795d7bddd9ce1cca2f949a229c5c2c (patch) | |
tree | d33a576616b8652d79324ffe8b53655dce699a57 /salhelper | |
parent | 6d5d495f09b34e51ae5ec93bf36d12a067d53d6a (diff) |
INTEGRATION: CWS warnings01 (1.2.134); FILE MERGED
2005/09/23 00:30:01 sb 1.2.134.2: RESYNC: (1.2-1.3); FILE MERGED
2005/09/02 15:01:32 sb 1.2.134.1: #i53898# Made code warning-free.
Diffstat (limited to 'salhelper')
-rw-r--r-- | salhelper/source/dynload.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/salhelper/source/dynload.cxx b/salhelper/source/dynload.cxx index a63047843..13d2866bc 100644 --- a/salhelper/source/dynload.cxx +++ b/salhelper/source/dynload.cxx @@ -4,9 +4,9 @@ * * $RCSfile: dynload.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: rt $ $Date: 2005-09-08 17:01:02 $ + * last change: $Author: hr $ $Date: 2006-06-20 04:11:35 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -72,7 +72,8 @@ ORealDynamicLoader* ORealDynamicLoader::newInstance(ORealDynamicLoader ** ppSetT return NULL; } - initFunc = (ApiInitFunction)osl_getSymbol(pModule, initFunction.pData); + initFunc = (ApiInitFunction)osl_getFunctionSymbol( + pModule, initFunction.pData); if ( !initFunc ) { |