diff options
author | Jörg Budischewski <jbu@openoffice.org> | 2001-08-23 13:30:57 +0000 |
---|---|---|
committer | Jörg Budischewski <jbu@openoffice.org> | 2001-08-23 13:30:57 +0000 |
commit | 48143a874a0e68984f0918c7543516f793a8eef2 (patch) | |
tree | aca046a088435219d14b7a9f17e87a1a32f3bedd /javaunohelper/com/sun/star/comp | |
parent | b1e3c1d43161ad7275b5aaf7913ba42097a3b3be (diff) |
#91465# Singletions as services are now returned by getValueByName()
Diffstat (limited to 'javaunohelper/com/sun/star/comp')
-rw-r--r-- | javaunohelper/com/sun/star/comp/helper/ComponentContext.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/javaunohelper/com/sun/star/comp/helper/ComponentContext.java b/javaunohelper/com/sun/star/comp/helper/ComponentContext.java index fce162826f42..1f81f9a347b8 100644 --- a/javaunohelper/com/sun/star/comp/helper/ComponentContext.java +++ b/javaunohelper/com/sun/star/comp/helper/ComponentContext.java @@ -2,9 +2,9 @@ * * $RCSfile: ComponentContext.java,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: dbo $ $Date: 2001-06-25 14:27:51 $ + * last change: $Author: jbu $ $Date: 2001-08-23 14:30:57 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -165,7 +165,7 @@ public class ComponentContext implements XComponentContext, XComponent { if (m_xSMgr != null) { - m_xSMgr.createInstanceWithContext( serviceName, this ); + xInstance = m_xSMgr.createInstanceWithContext( serviceName, this ); } else { |