diff options
author | Christian Lippka <cl@openoffice.org> | 2001-06-27 13:10:29 +0000 |
---|---|---|
committer | Christian Lippka <cl@openoffice.org> | 2001-06-27 13:10:29 +0000 |
commit | d8cbc30c119e38935a8c6edefd14d847ff4a914e (patch) | |
tree | 4d829e6d65a62f05e43e52f3c06dc73d149a2af9 /xmloff | |
parent | b3a18f15738c308d1879b0c24204cf1660c640c1 (diff) |
#88691# added relative urls
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/draw/sdpropls.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/draw/sdpropls.cxx b/xmloff/source/draw/sdpropls.cxx index 6c5fe43d3a0e..6d8d6b44d083 100644 --- a/xmloff/source/draw/sdpropls.cxx +++ b/xmloff/source/draw/sdpropls.cxx @@ -2,9 +2,9 @@ * * $RCSfile: sdpropls.cxx,v $ * - * $Revision: 1.44 $ + * $Revision: 1.45 $ * - * last change: $Author: mib $ $Date: 2001-06-26 09:53:05 $ + * last change: $Author: cl $ $Date: 2001-06-27 14:10:29 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -1495,7 +1495,7 @@ void XMLPageExportPropertyMapper::handleElementItem( OUString aSoundURL; if( (rProperty.maValue >>= aSoundURL) && aSoundURL.getLength() != 0 ) { - mrExport.AddAttribute(XML_NAMESPACE_XLINK, sXML_href, aSoundURL ); + mrExport.AddAttribute(XML_NAMESPACE_XLINK, sXML_href, mrExport.GetRelativeReference(aSoundURL) ); mrExport.AddAttributeASCII( XML_NAMESPACE_XLINK, sXML_type, sXML_simple ); mrExport.AddAttributeASCII( XML_NAMESPACE_XLINK, sXML_show, sXML_new ); mrExport.AddAttributeASCII( XML_NAMESPACE_XLINK, sXML_actuate, sXML_onRequest ); |