summaryrefslogtreecommitdiff
path: root/svtools/source/svhtml
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2005-01-11 12:13:16 +0000
committerRüdiger Timm <rt@openoffice.org>2005-01-11 12:13:16 +0000
commite012924ec3857509b1e60df47ee8edcaeb9f60b6 (patch)
treec8a79dcb4b411769978d7032a63b1253047e6dfc /svtools/source/svhtml
parentc15e372bba9517045fecf676b718826bd80619f8 (diff)
INTEGRATION: CWS sb19 (1.2.88); FILE MERGED
2004/10/20 15:11:47 mba 1.2.88.1: #110407#: remove static BaseURL
Diffstat (limited to 'svtools/source/svhtml')
-rw-r--r--svtools/source/svhtml/htmlsupp.cxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/svtools/source/svhtml/htmlsupp.cxx b/svtools/source/svhtml/htmlsupp.cxx
index b11ba8adc0ae..6d0b63088d2d 100644
--- a/svtools/source/svhtml/htmlsupp.cxx
+++ b/svtools/source/svhtml/htmlsupp.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: htmlsupp.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: rt $ $Date: 2004-06-16 10:29:57 $
+ * last change: $Author: rt $ $Date: 2005-01-11 13:13:16 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -87,7 +87,7 @@ static HTMLOptionEnum __READONLY_DATA aScriptLangOptEnums[] =
{ 0, 0 }
};
-BOOL HTMLParser::ParseScriptOptions( String& rLangString,
+BOOL HTMLParser::ParseScriptOptions( String& rLangString, const String& rBaseURL,
HTMLScriptLanguage& rLang,
String& rSrc,
String& rLibrary,
@@ -118,9 +118,8 @@ BOOL HTMLParser::ParseScriptOptions( String& rLangString,
break;
case HTML_O_SRC:
- rSrc = INetURLObject::RelToAbs( pOption->GetString() );
+ rSrc = INetURLObject::GetAbsURL( rBaseURL, pOption->GetString() );
break;
-
case HTML_O_SDLIBRARY:
rLibrary = pOption->GetString();
break;