diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2016-04-26 09:56:47 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-04-30 15:06:45 +0000 |
commit | fc2590cfa112222500a6c847917d7545f60024c6 (patch) | |
tree | 951f6a8e86c6d42672b9fe1e6e6cde3ee7eed152 /xmloff | |
parent | 783b02de3bc75cd0be1a6e919d4755a297fe7a84 (diff) |
Fix typos
Change-Id: Id81b16ff26283611f0b84929d831c827f847ab73
Reviewed-on: https://gerrit.libreoffice.org/24317
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/draw/shapeexport.cxx | 2 | ||||
-rw-r--r-- | xmloff/source/text/txtparae.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/draw/shapeexport.cxx b/xmloff/source/draw/shapeexport.cxx index 92c965ee0e71..41a01c71da9b 100644 --- a/xmloff/source/draw/shapeexport.cxx +++ b/xmloff/source/draw/shapeexport.cxx @@ -2351,7 +2351,7 @@ void XMLShapeExport::ImpExportGraphicObjectShape( OUString aReplacementUrl; xPropSet->getPropertyValue("ReplacementGraphicURL") >>= aReplacementUrl; - // If there is no url, then then graphic is empty + // If there is no url, then the graphic is empty if(!aReplacementUrl.isEmpty()) { const OUString aStr = mrExport.AddEmbeddedGraphicObject(aReplacementUrl); diff --git a/xmloff/source/text/txtparae.cxx b/xmloff/source/text/txtparae.cxx index 4b7a823afe19..ba08a558ada5 100644 --- a/xmloff/source/text/txtparae.cxx +++ b/xmloff/source/text/txtparae.cxx @@ -3081,7 +3081,7 @@ void XMLTextParagraphExport::_exportTextGraphic( rPropSet->getPropertyValue( sGraphicURL ) >>= sOrigURL; OUString sURL(GetExport().AddEmbeddedGraphicObject( sOrigURL )); - // If there still is no url, then then graphic is empty + // If there still is no url, then graphic is empty if( !sURL.isEmpty() ) { GetExport().AddAttribute(XML_NAMESPACE_XLINK, XML_HREF, sURL ); @@ -3112,7 +3112,7 @@ void XMLTextParagraphExport::_exportTextGraphic( { const OUString sReplacementURL(GetExport().AddEmbeddedGraphicObject( sReplacementOrigURL )); - // If there is no url, then then graphic is empty + // If there is no url, then graphic is empty if(sReplacementURL.getLength()) { GetExport().AddAttribute(XML_NAMESPACE_XLINK, XML_HREF, sReplacementURL); |