summaryrefslogtreecommitdiff
path: root/javaunohelper/com/sun/star/comp
diff options
context:
space:
mode:
authorJörg Budischewski <jbu@openoffice.org>2001-08-23 13:30:57 +0000
committerJörg Budischewski <jbu@openoffice.org>2001-08-23 13:30:57 +0000
commit502f6c4b2df48fd36a672f2e07f4cecaa1ab4222 (patch)
tree7b6a8738a6aaa4c9e3c2afc77fd85cb278d8875d /javaunohelper/com/sun/star/comp
parentefadc52a8b3a3d63b7ec0c25adb62844adc2a822 (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.java6
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 32fb13529..2583ef81b 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
{