diff options
author | Matúš Kukan <matus.kukan@gmail.com> | 2012-10-02 11:01:23 +0200 |
---|---|---|
committer | Matúš Kukan <matus.kukan@gmail.com> | 2012-10-02 11:10:04 +0200 |
commit | d50f3c5922411304b4291953a4cc9f07f4730892 (patch) | |
tree | c9e5d9d0199faa51e7296dce5161b50f80df2f13 /cpputools/source | |
parent | 95630ef04b9df092653fb2f68d91a7e6100f7a4e (diff) |
stoc: prefix more libs; only bootstrap is remaining
Change-Id: Ie9032c6faa493da47e76bc9ff467c4de4b318ca9
Diffstat (limited to 'cpputools/source')
-rw-r--r-- | cpputools/source/registercomponent/registercomponent.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cpputools/source/registercomponent/registercomponent.cxx b/cpputools/source/registercomponent/registercomponent.cxx index 06c38f5e7d80..950952b5d880 100644 --- a/cpputools/source/registercomponent/registercomponent.cxx +++ b/cpputools/source/registercomponent/registercomponent.cxx @@ -722,13 +722,15 @@ static void bootstrap( OUString(), OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.comp.stoc.JavaVirtualMachine")), xSMgr, - Reference< XRegistryKey > () ); + Reference< XRegistryKey > (), + "javavm" ); Reference< XInterface > r2 = loadSharedLibComponentFactory( OUString(RTL_CONSTASCII_USTRINGPARAM("javaloader.uno" SAL_DLLEXTENSION)), OUString(), OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.comp.stoc.JavaComponentLoader")), xSMgr, - Reference< XRegistryKey > () ); + Reference< XRegistryKey > (), + "javaloader" ); Reference <XSet> xSet( xSMgr, UNO_QUERY ); if( r.is() && r2.is() && xSet.is() ) { |