summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
Diffstat (limited to 'filter')
-rw-r--r--filter/source/config/cache/filtercache.cxx4
-rw-r--r--filter/source/msfilter/msdffimp.cxx2
-rw-r--r--filter/source/xslt/import/wordml/wordml2ooo_path.xsl6
3 files changed, 6 insertions, 6 deletions
diff --git a/filter/source/config/cache/filtercache.cxx b/filter/source/config/cache/filtercache.cxx
index 6c44583c078a..a44e8d5086b8 100644
--- a/filter/source/config/cache/filtercache.cxx
+++ b/filter/source/config/cache/filtercache.cxx
@@ -1223,7 +1223,7 @@ void FilterCache::impl_validateAndOptimize()
// Note: of course the default loader must be ignored here.
// Because we replace its registration later completely with all
// types, which are not referenced by any other loader.
- // So we can avaoid our code against the complexity of a diff!
+ // So we can avoid our code against the complexity of a diff!
OUString sLoader = pIt->first;
if (sLoader.equals(sDefaultFrameLoader))
continue;
@@ -1872,7 +1872,7 @@ void FilterCache::impl_saveItem(const css::uno::Reference< css::container::XName
// special handling for flags! Convert it from an integer flag field back
// to a list of names ...
// But note: because we work directly on a reference to the cache item,
- // its not allowd to change the value here. We must work on a copy!
+ // its not allowed to change the value here. We must work on a copy!
pIt = aItem.find(PROPNAME_FLAGS);
if (pIt != aItem.end())
{
diff --git a/filter/source/msfilter/msdffimp.cxx b/filter/source/msfilter/msdffimp.cxx
index 4943d3c37f50..cd7f92877897 100644
--- a/filter/source/msfilter/msdffimp.cxx
+++ b/filter/source/msfilter/msdffimp.cxx
@@ -4430,7 +4430,7 @@ SdrObject* SvxMSDffManager::ImportShape( const DffRecordHeader& rHd, SvStream& r
// mso_sptArc special treating:
// sj: since we actually can't render the arc because of its weird SnapRect settings,
// we will create a new CustomShape, that can be saved/loaded without problems.
- // We will change the shape type, so this code applys only if importing arcs from msoffice.
+ // We will change the shape type, so this code applies only if importing arcs from msoffice.
if ( aObjData.eShapeType == mso_sptArc )
{
const OUString sAdjustmentValues( "AdjustmentValues" );
diff --git a/filter/source/xslt/import/wordml/wordml2ooo_path.xsl b/filter/source/xslt/import/wordml/wordml2ooo_path.xsl
index ec2edea76a95..10c189fd243c 100644
--- a/filter/source/xslt/import/wordml/wordml2ooo_path.xsl
+++ b/filter/source/xslt/import/wordml/wordml2ooo_path.xsl
@@ -697,7 +697,7 @@
<xsl:when test="$command = 't' ">
<!-- relative moveto -->
<xsl:variable name="new-enhanced-path" select="concat($enhanced-path ,' M ' ) "/>
- <!--####maybe this is not crect because t r and v hasn't direct image in enhaced-path-->
+ <!--####maybe this is not created because t r and v haven't direct image in enhanced-path-->
<xsl:variable name="num-and-pos">
<xsl:call-template name="get-number-after">
<xsl:with-param name="vml-path" select="$vml-path"/>
@@ -716,7 +716,7 @@
</xsl:when>
<xsl:when test="$command = 'r' ">
<!-- relative lineto -->
- <!--####maybe this is not crect because 't' 'r' and 'v' hasn't direct image in enhaced-path-->
+ <!--####maybe this is not created because 't' 'r' and 'v' haven't direct image in enhanced-path-->
<!-- 'l' command is not supported currently, so we use 'L' -->
<xsl:message>'l' command is not supported currently, so we use 'L'. This may case problem.</xsl:message>
<xsl:variable name="new-enhanced-path" select="concat($enhanced-path ,' L ' ) "/>
@@ -742,7 +742,7 @@
</xsl:when>
<xsl:when test="$command = 'v' ">
<!-- relative curveto -->
- <!--####maybe this is not crect because 't' 'r' and 'v' hasn't direct image in enhaced-path-->
+ <!--####maybe this is not created because 't' 'r' and 'v' haven't direct image in enhanced-path-->
<xsl:variable name="new-enhanced-path" select="concat($enhanced-path ,' C ' ) "/>
<!--<xsl:variable name="control-and-pos">
<xsl:call-template name="get-number-after">