summaryrefslogtreecommitdiff
path: root/scripting/source/dlgprov
diff options
context:
space:
mode:
authorSander Vesik <svesik@openoffice.org>2004-04-19 22:14:33 +0000
committerSander Vesik <svesik@openoffice.org>2004-04-19 22:14:33 +0000
commit68904aa5c36820ca1aad37126c4e01acd548471d (patch)
tree2490c8d785427fcd16885e383589da44e4cf770c /scripting/source/dlgprov
parentde6433b4b2230e8494142717529967b610579fc8 (diff)
INTEGRATION: CWS scriptingf5 (1.2.2); FILE MERGED
2004/03/05 10:33:44 npower 1.2.2.1: #i22570# Changes to support new URL parsing service. A side affect of using the new service is that the format of the URI has changed a little. The URI is now nt hierarchical. Changes to the files below involve removing methods to parse data from the URI instread new service UriReferenceFactory, adding the new types to build project xml files.
Diffstat (limited to 'scripting/source/dlgprov')
-rw-r--r--scripting/source/dlgprov/dlgevtatt.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripting/source/dlgprov/dlgevtatt.cxx b/scripting/source/dlgprov/dlgevtatt.cxx
index 4c56a8f97a77..50b0da3465f4 100644
--- a/scripting/source/dlgprov/dlgevtatt.cxx
+++ b/scripting/source/dlgprov/dlgevtatt.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: dlgevtatt.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: rt $ $Date: 2004-02-10 16:12:36 $
+ * last change: $Author: svesik $ $Date: 2004-04-19 23:14:33 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -332,7 +332,7 @@ namespace dlgprov
sal_Int32 nIndex = sScriptCode.indexOf( ':' );
if ( nIndex >= 0 && nIndex < sScriptCode.getLength() )
{
- sScriptURL = ::rtl::OUString::createFromAscii( "vnd.sun.star.script://" );
+ sScriptURL = ::rtl::OUString::createFromAscii( "vnd.sun.star.script:" );
sScriptURL += sScriptCode.copy( nIndex + 1 );
sScriptURL += ::rtl::OUString::createFromAscii( "?language=Basic&location=" );
sScriptURL += sScriptCode.copy( 0, nIndex );