summaryrefslogtreecommitdiff
path: root/xmloff/source/core
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-09-05 18:47:55 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-09-06 09:05:50 +0200
commit73e3604fc16695758b9a7f55051d2f786f74be2d (patch)
tree357784a45ad575a8de6d6d9450fb18190091c873 /xmloff/source/core
parent396473a3d6ddd1f1ee2d4e0fd3bae5c41d2cc3fd (diff)
Fixing '....' and '..'
Change-Id: I926069d6c1f2712e5020d930f7ff6c62fd00e912 Reviewed-on: https://gerrit.libreoffice.org/78667 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'xmloff/source/core')
-rw-r--r--xmloff/source/core/xmlexp.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/core/xmlexp.cxx b/xmloff/source/core/xmlexp.cxx
index 74ee4336ed5e..83d3fd71af47 100644
--- a/xmloff/source/core/xmlexp.cxx
+++ b/xmloff/source/core/xmlexp.cxx
@@ -2062,7 +2062,7 @@ void SvXMLExport::ExportEmbeddedOwnObject( Reference< XComponent > const & rComp
OUString SvXMLExport::GetRelativeReference(const OUString& rValue)
{
OUString sValue( rValue );
- // #i65474# handling of fragment URLs ("#....") is undefined
+ // #i65474# handling of fragment URLs ("#...") is undefined
// they are stored 'as is'
uno::Reference< uri::XUriReference > xUriRef;
if(!sValue.isEmpty() && sValue[0] != '#')