summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorSascha Ballach <sab@openoffice.org>2001-06-25 10:44:38 +0000
committerSascha Ballach <sab@openoffice.org>2001-06-25 10:44:38 +0000
commit130d43471825a31020b9d81992421fa5cba827e3 (patch)
tree403eb83353c5950197f7e57085c4cb452082ad90 /xmloff
parentb76b4bdbe34e64e26aa2ca4a783c3896ec54e61b (diff)
#88691#; new methods to convert relative references to absolute and absolute to relative added
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/core/xmlimp.cxx9
1 files changed, 7 insertions, 2 deletions
diff --git a/xmloff/source/core/xmlimp.cxx b/xmloff/source/core/xmlimp.cxx
index bb2e921f2f31..5589e34b018e 100644
--- a/xmloff/source/core/xmlimp.cxx
+++ b/xmloff/source/core/xmlimp.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: xmlimp.cxx,v $
*
- * $Revision: 1.43 $
+ * $Revision: 1.44 $
*
- * last change: $Author: mib $ $Date: 2001-06-19 14:57:51 $
+ * last change: $Author: sab $ $Date: 2001-06-25 11:44:38 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -1065,3 +1065,8 @@ const SvXMLStylesContext *SvXMLImport::GetMasterStyles() const
{
return (const SvXMLStylesContext *)&xMasterStyles;
}
+
+OUString SvXMLImport::GetAbsoluteReference(const OUString& rValue)
+{
+ return INetURLObject::RelToAbs( rValue );
+}