diff options
author | Oliver Bolte <obo@openoffice.org> | 2004-08-12 11:17:23 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2004-08-12 11:17:23 +0000 |
commit | b772aba98782b47f9c2048a16464f96dccf1849a (patch) | |
tree | 17acc5d9be19477199cafe8d805540cf06400c22 /stoc/source/javaloader | |
parent | 9be1573e371ac41e5fb168a03d7977065afe0535 (diff) |
INTEGRATION: CWS unotlc (1.20.16); FILE MERGED
2004/07/06 14:58:18 dbo 1.20.16.1: fixing return statement
Diffstat (limited to 'stoc/source/javaloader')
-rw-r--r-- | stoc/source/javaloader/javaloader.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/stoc/source/javaloader/javaloader.cxx b/stoc/source/javaloader/javaloader.cxx index eb65e1f42e89..14bf1c1fe929 100644 --- a/stoc/source/javaloader/javaloader.cxx +++ b/stoc/source/javaloader/javaloader.cxx @@ -2,9 +2,9 @@ * * $RCSfile: javaloader.cxx,v $ * - * $Revision: 1.20 $ + * $Revision: 1.21 $ * - * last change: $Author: obo $ $Date: 2004-06-04 02:31:10 $ + * last change: $Author: obo $ $Date: 2004-08-12 12:17:23 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -238,7 +238,7 @@ const css::uno::Reference<XImplementationLoader> & JavaComponentLoader::getJavaL // We must not throw a RuntimeException, because this might end the applications. // It is ok if java components // are not working because the office can be installed without Java support. - return css::uno::Reference<XImplementationLoader>(); + return m_javaLoader; // null-ref try { |