diff options
author | Daniel Boelzle <dbo@openoffice.org> | 2001-06-25 13:27:51 +0000 |
---|---|---|
committer | Daniel Boelzle <dbo@openoffice.org> | 2001-06-25 13:27:51 +0000 |
commit | 1de9a719615ddb0e7eca932576baa6a0bbccab9d (patch) | |
tree | d1608a32ae86d10366ccb6687f95d9b9886181cb /javaunohelper | |
parent | b25155432309249cb35425c9b8308a47c21c1171 (diff) |
#87233# singleton prefix: the
Diffstat (limited to 'javaunohelper')
-rw-r--r-- | javaunohelper/com/sun/star/comp/helper/Bootstrap.java | 6 | ||||
-rw-r--r-- | javaunohelper/com/sun/star/comp/helper/ComponentContext.java | 10 |
2 files changed, 8 insertions, 8 deletions
diff --git a/javaunohelper/com/sun/star/comp/helper/Bootstrap.java b/javaunohelper/com/sun/star/comp/helper/Bootstrap.java index 3589b0bb8..a6bee7060 100644 --- a/javaunohelper/com/sun/star/comp/helper/Bootstrap.java +++ b/javaunohelper/com/sun/star/comp/helper/Bootstrap.java @@ -2,9 +2,9 @@ * * $RCSfile: Bootstrap.java,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: dbo $ $Date: 2001-06-14 11:58:23 $ + * last change: $Author: dbo $ $Date: 2001-06-25 14:27:51 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -136,7 +136,7 @@ public class Bootstrap { context_entries = new Hashtable( 1 ); // add smgr context_entries.put( - "com.sun.star.lang.ServiceManager", + "com.sun.star.lang.theServiceManager", new ComponentContextEntry( null, xSMgr ) ); // ... xxx todo: add standard entries XComponentContext xContext = new ComponentContext( context_entries, null ); diff --git a/javaunohelper/com/sun/star/comp/helper/ComponentContext.java b/javaunohelper/com/sun/star/comp/helper/ComponentContext.java index 770beabb6..32fb13529 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.1 $ + * $Revision: 1.2 $ * - * last change: $Author: dbo $ $Date: 2001-06-14 11:58:23 $ + * last change: $Author: dbo $ $Date: 2001-06-25 14:27:51 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -112,7 +112,7 @@ public class ComponentContext implements XComponentContext, XComponent m_xSMgr = null; m_bDisposeSMgr = false; - Object o = table.get( "com.sun.star.lang.ServiceManager" ); + Object o = table.get( "com.sun.star.lang.theServiceManager" ); if (o != null) { if (o instanceof ComponentContextEntry) @@ -266,7 +266,7 @@ public class ComponentContext implements XComponentContext, XComponent while (keys.hasMoreElements()) { String name = (String)keys.nextElement(); - if (! name.equals( "com.sun.star.lang.ServiceManager" )) + if (! name.equals( "com.sun.star.lang.theServiceManager" )) { XComponent xComp; @@ -284,7 +284,7 @@ public class ComponentContext implements XComponentContext, XComponent if (xComp != null) { - if (name.equals( "com.sun.star.reflection.TypeDescriptionManager" )) + if (name.equals( "com.sun.star.reflection.theTypeDescriptionManager" )) { tdmgr = xComp; } |