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 | 5475994d2ab8d6e83d91d4b770ee9543c0f1eadd (patch) | |
tree | 1738bd02e8cb3bbd1930880f169bb30f9608f6f1 /javaunohelper/com/sun/star/comp | |
parent | 3faaaa31ce06a4ab7c4c8981cb3ea7322c2626e8 (diff) |
#87233# singleton prefix: the
Diffstat (limited to 'javaunohelper/com/sun/star/comp')
-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 c3248952f530..1713c24cd056 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 4bef96bbb855..fce162826f42 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; } |