diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-09-30 23:15:18 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-10-01 00:56:17 +0200 |
commit | 3fb51feb1c0a5b62dc55c76d0037564f42366226 (patch) | |
tree | ec50c64ce20b45b2d20c8d84d94950fbc121d2cd /include/cppuhelper | |
parent | e669d631a746d9f2cb9dc6da707a7ed73bd9401a (diff) |
[API CHANGE] Remove unused CPLD_ACCESS feature from C++/Java component loaders
...introduced in 2000 with 38974aeef6dfaa1c625cf5498ec553489dd08c87 "added
library loading limitation by using env variable CPLD_ACCESSPATH=path1;path2;
etc." and 9be3c618e0b1d2b2635bd7b134693ed5ff3021bc "#80090# restrict jar file
access to java system property com.sun.star.comp.loader.CPLD_ACCESSPATH" but
already in 2004 considered "a hack [that] seems to be unused nowadays" in
1d3164df959b31ba9f50ddc108569f3adec32ff7 "CWS sb20: #i29119# Replaced
sandbox.jar-based class loader with an own one."
Change-Id: I637afd5daeb4ca097edd17f834c81af892dcfc6a
Diffstat (limited to 'include/cppuhelper')
-rw-r--r-- | include/cppuhelper/shlib.hxx | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/include/cppuhelper/shlib.hxx b/include/cppuhelper/shlib.hxx index 666359fac851..dcdf148a6113 100644 --- a/include/cppuhelper/shlib.hxx +++ b/include/cppuhelper/shlib.hxx @@ -40,8 +40,7 @@ namespace cppu /** Loads a shared library component and gets the factory out of it. You can give either a fully qualified libname or single lib name. The libname need not be pre/postfixed (e.g. xxx.dll). You can give parameter rPath to force lookup of the library in a specific - directory. The resulting path of the library will be checked against environment variable - CPLD_ACCESSPATH if set. + directory. @param rLibName name of the library @param rPath optional path @@ -63,8 +62,7 @@ SAL_CALL loadSharedLibComponentFactory( /** Loads a shared library component and gets the factory out of it. You can give either a fully qualified libname or single lib name. The libname need not be pre/postfixed (e.g. xxx.dll). You can give parameter rPath to force lookup of the library in a specific - directory. The resulting path of the library will be checked against environment variable - CPLD_ACCESSPATH if set. An optional 'prefix' parameter is used to determine the symbol + directory. An optional 'prefix' parameter is used to determine the symbol name of the entry point in the library. @param rLibName name of the library @@ -109,8 +107,7 @@ SAL_CALL invokeStaticComponentFactory( /** Invokes component_writeInfo() function of specified component library. You can give either a fully qualified libname or single lib name. The libname need not be pre/postfixed (e.g. xxx.dll). You can give parameter rPath to force lookup of the library in a specific - directory. The resulting path of the library will be checked against environment variable - CPLD_ACCESSPATH if set. + directory. @deprecated component_writeInfo should no longer be used in new components |