summaryrefslogtreecommitdiff
path: root/scripting
diff options
context:
space:
mode:
authorThomas Benisch <tbe@openoffice.org>2003-09-23 14:06:47 +0000
committerThomas Benisch <tbe@openoffice.org>2003-09-23 14:06:47 +0000
commit356ef1f18fdcd06645d4e803ff1e9c7433478802 (patch)
tree6f519b81485f92a4cb103fc3e081d5653d9896d6 /scripting
parentd7fe2c208105b20c04c6b232362ca08df08795ec (diff)
#i18767# added LanguageScriptProvider and ScriptProvider to supported service names
Diffstat (limited to 'scripting')
-rw-r--r--scripting/source/basprov/basprov.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/scripting/source/basprov/basprov.cxx b/scripting/source/basprov/basprov.cxx
index ab6499a24bfd..34d167736ff5 100644
--- a/scripting/source/basprov/basprov.cxx
+++ b/scripting/source/basprov/basprov.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: basprov.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: tbe $ $Date: 2003-09-23 10:07:03 $
+ * last change: $Author: tbe $ $Date: 2003-09-23 15:06:47 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -143,8 +143,10 @@ namespace basprov
::osl::MutexGuard aGuard( ::osl::Mutex::getGlobalMutex() );
if ( !pNames )
{
- static Sequence< ::rtl::OUString > aNames(1);
+ static Sequence< ::rtl::OUString > aNames(3);
aNames.getArray()[0] = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "drafts.com.sun.star.script.framework.provider.ScriptProviderForBasic" ) );
+ aNames.getArray()[1] = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "drafts.com.sun.star.script.framework.provider.LanguageScriptProvider" ) );
+ aNames.getArray()[2] = ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "drafts.com.sun.star.script.framework.provider.ScriptProvider" ) );
pNames = &aNames;
}
}