summaryrefslogtreecommitdiff
path: root/scripting/source/basprov/basmethnode.cxx
diff options
context:
space:
mode:
authorDuncan Foster <dfoster@openoffice.org>2003-10-17 10:22:24 +0000
committerDuncan Foster <dfoster@openoffice.org>2003-10-17 10:22:24 +0000
commit1ef37ae3e812cd0d5ab2ec65dd823532e8518b3a (patch)
treea9bd69c103ff6dc24bc6fa16d4eda087d637d63c /scripting/source/basprov/basmethnode.cxx
parent34cf06f6493deb58b7a1ba382d95fed6bd4b688e (diff)
#i21260# - use vnd.sun.star.script as scripting framework protocol
Diffstat (limited to 'scripting/source/basprov/basmethnode.cxx')
-rw-r--r--scripting/source/basprov/basmethnode.cxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/scripting/source/basprov/basmethnode.cxx b/scripting/source/basprov/basmethnode.cxx
index 45c09f7f3203..573ad7b1a5ef 100644
--- a/scripting/source/basprov/basmethnode.cxx
+++ b/scripting/source/basprov/basmethnode.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: basmethnode.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: npower $ $Date: 2003-10-15 08:35:31 $
+ * last change: $Author: dfoster $ $Date: 2003-10-17 11:22:24 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -95,11 +95,10 @@ namespace basprov
BasicMethodNodeImpl::BasicMethodNodeImpl( SbMethod* pMethod, bool isAppScript )
:m_pMethod( pMethod ), m_bIsAppScript( isAppScript )
{
- // TO DO ( needs changing to vnd...script::// syntax )
String sModName = m_pMethod->GetModule()->GetName();
String sLibName = m_pMethod->GetModule()->GetParent()->GetName();
String sMethName = m_pMethod->GetName();
- String sTmp = String::CreateFromAscii("script://");
+ String sTmp = String::CreateFromAscii("vnd.sun.star.script://");
sTmp += sLibName;
sTmp += '.';
sTmp += sModName;