diff options
author | sb <sb@openoffice.org> | 2010-04-16 16:24:56 +0200 |
---|---|---|
committer | sb <sb@openoffice.org> | 2010-04-16 16:24:56 +0200 |
commit | 462d351e9d4038ebad0fa11c8c77106a3b7bd3c9 (patch) | |
tree | b143066a3f6b261c544712c0a3dbb710e058a99a /jurt/com | |
parent | 640a983fa652a2d1558cd506fca2c92d6093967a (diff) |
sb120: #i110944# jpipe.dll wrapper around jpipx.dll
Diffstat (limited to 'jurt/com')
-rw-r--r-- | jurt/com/sun/star/lib/connections/pipe/PipeConnection.java | 24 |
1 files changed, 1 insertions, 23 deletions
diff --git a/jurt/com/sun/star/lib/connections/pipe/PipeConnection.java b/jurt/com/sun/star/lib/connections/pipe/PipeConnection.java index 997b9d1c76ee..455e3aab6502 100644 --- a/jurt/com/sun/star/lib/connections/pipe/PipeConnection.java +++ b/jurt/com/sun/star/lib/connections/pipe/PipeConnection.java @@ -58,30 +58,8 @@ public class PipeConnection implements XConnection, XConnectionBroadcaster { static public final boolean DEBUG = false; static { - // preload shared libraries whichs import lips are linked to jpipe - if ( System.getProperty( "os.name" ).startsWith( "Windows" ) ) - { - try { - NativeLibraryLoader.loadLibrary(PipeConnection.class.getClassLoader(), "msvcr71"); - } catch (Throwable e){} // loading twice would fail - - try { - NativeLibraryLoader.loadLibrary(PipeConnection.class.getClassLoader(), "msvcr70"); - } catch (Throwable e){} // loading twice would fail - - try { - NativeLibraryLoader.loadLibrary(PipeConnection.class.getClassLoader(), "uwinapi"); - } catch (Throwable e){} // loading twice would fail - - try { - NativeLibraryLoader.loadLibrary(PipeConnection.class.getClassLoader(), "sal3"); - } catch (Throwable e){} // loading twice would fail - } - // load shared library for JNI code - try { - NativeLibraryLoader.loadLibrary(PipeConnection.class.getClassLoader(), "jpipe"); - } catch (Throwable e){} // loading twice would fail + NativeLibraryLoader.loadLibrary(PipeConnection.class.getClassLoader(), "jpipe"); } protected String _aDescription; |