diff options
author | Rüdiger Timm <rt@openoffice.org> | 2005-10-19 14:33:22 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2005-10-19 14:33:22 +0000 |
commit | 6d2ec7e4c36d08dbc75d5e3858b4f92b554ca1ad (patch) | |
tree | b10156e2acc326b46860749d0738222a52e26e8f /vcl | |
parent | 2ec957c6674f80948916fc1c2681a2e9f9125c97 (diff) |
#i10000# Changed _oslModule into oslModule (there is no _oslModule except for MACOSX)
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/unx/source/plugadapt/salplug.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/unx/source/plugadapt/salplug.cxx b/vcl/unx/source/plugadapt/salplug.cxx index e09050300229..533b30829e93 100644 --- a/vcl/unx/source/plugadapt/salplug.cxx +++ b/vcl/unx/source/plugadapt/salplug.cxx @@ -4,9 +4,9 @@ * * $RCSfile: salplug.cxx,v $ * - * $Revision: 1.16 $ + * $Revision: 1.17 $ * - * last change: $Author: rt $ $Date: 2005-10-17 14:23:45 $ + * last change: $Author: rt $ $Date: 2005-10-19 15:33:22 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -327,7 +327,7 @@ static bool is_cde_desktop( Display* pDisplay ) OUString aPathName( RTL_CONSTASCII_USTRINGPARAM( "file:///usr/dt/lib/libDtSvc.so" ) ); if( nDtAtom && ( pLibrary = osl_loadModule( aPathName.pData, SAL_LOADMODULE_DEFAULT ) ) ) { - osl_unloadModule( (_oslModule*)pLibrary ); + osl_unloadModule( (oslModule*)pLibrary ); return true; } |