summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-07-21 11:25:21 +0200
committerJulien Nabet <serval2412@yahoo.fr>2018-07-21 22:23:05 +0200
commitd5e970537a26ce8eba8ab87498ddf3d53c571fb6 (patch)
tree3d6ec8ca92e7a9644cb4a339fc36c054f225def5 /filter
parent91bad611355905a637e72602d6590c12547fc1a3 (diff)
Fix typos
Change-Id: I8dd681eebf5534224d1b5e886d6a0600767f9c98 Reviewed-on: https://gerrit.libreoffice.org/57600 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'filter')
-rw-r--r--filter/source/msfilter/svdfppt.cxx2
-rw-r--r--filter/source/pdf/pdfexport.cxx2
-rw-r--r--filter/source/xslt/odf2xhtml/export/common/body.xsl4
-rw-r--r--filter/source/xslt/odf2xhtml/export/xhtml/body.xsl4
4 files changed, 6 insertions, 6 deletions
diff --git a/filter/source/msfilter/svdfppt.cxx b/filter/source/msfilter/svdfppt.cxx
index 09590554ddd3..02201e843ece 100644
--- a/filter/source/msfilter/svdfppt.cxx
+++ b/filter/source/msfilter/svdfppt.cxx
@@ -4363,7 +4363,7 @@ PPTStyleSheet::PPTStyleSheet( const DffRecordHeader& rSlideHd, SvStream& rIn, Sd
}
rIn.Seek( nOldFilePos );
- // will will create the default numbulletitem for each instance
+ // will create the default numbulletitem for each instance
for ( auto i : o3tl::enumrange<TSS_Type>() )
{
sal_uInt16 nLevels, nDepth = 0;
diff --git a/filter/source/pdf/pdfexport.cxx b/filter/source/pdf/pdfexport.cxx
index c7e307f21453..6f91cdc53b3c 100644
--- a/filter/source/pdf/pdfexport.cxx
+++ b/filter/source/pdf/pdfexport.cxx
@@ -703,7 +703,7 @@ bool PDFExport::Export( const OUString& rFile, const Sequence< PropertyValue >&
}
// after this point we don't need the legacy clear passwords anymore
// however they are still inside the passed filter data sequence
- // which is sadly out out our control
+ // which is sadly out of our control
aPermissionPassword.clear();
aOpenPassword.clear();
diff --git a/filter/source/xslt/odf2xhtml/export/common/body.xsl b/filter/source/xslt/odf2xhtml/export/common/body.xsl
index 6ef28bc68e0d..9bc022e38d62 100644
--- a/filter/source/xslt/odf2xhtml/export/common/body.xsl
+++ b/filter/source/xslt/odf2xhtml/export/common/body.xsl
@@ -321,8 +321,8 @@
<xsl:choose>
<!-- internal OOo URL used in content tables -->
<xsl:when test="contains($href, '%7Coutline') or contains($href, '|outline')">
- <!-- the simple workaround for content tables in a single document is to create create an anchor from every heading element
- work-around downside: Multiple identical headings won't refer always to the first.
+ <!-- the simplest workaround for content tables in a single document is to create an anchor from every heading element.
+ Downside: multiple identical headings won't refer always to the first.
-->
<xsl:text>#</xsl:text>
<xsl:variable name="title">
diff --git a/filter/source/xslt/odf2xhtml/export/xhtml/body.xsl b/filter/source/xslt/odf2xhtml/export/xhtml/body.xsl
index 570c9304af7e..c21840e1689e 100644
--- a/filter/source/xslt/odf2xhtml/export/xhtml/body.xsl
+++ b/filter/source/xslt/odf2xhtml/export/xhtml/body.xsl
@@ -190,7 +190,7 @@
<xsl:template match="office:body/*">
<xsl:param name="globalData"/>
- <!-- not using of 'apply-styles-and-content' as the content table information migth have been added to 'globalData' variable -->
+ <!-- not using of 'apply-styles-and-content' as the content table information might have been added to 'globalData' variable -->
<xsl:apply-templates select="@text:style-name | @draw:style-name | @draw:text-style-name | @table:style-name"><!-- | @presentation:style-name -->
<xsl:with-param name="globalData" select="$globalData"/>
</xsl:apply-templates>
@@ -675,7 +675,7 @@
<xsl:element name="{$elementName}">
<xsl:choose>
- <!-- in ODF borders of paragraphs will be merged by default. Merging means the adjactend paragraphs are building a unit,
+ <!-- in ODF borders of paragraphs will be merged by default. Merging means the adjacent paragraphs are building a unit,
where only the first and the last will have a border to the surrounding (top / bottom border)
<xsl:variable name="precedingParagraphStyle" select="preceding-sibling::*[1][name() = 'text:p']/@text:style-name"/>
<xsl:variable name="followingParagraphStyle" select="following-sibling::*[1][name() = 'text:p']/@text:style-name"/>