summaryrefslogtreecommitdiff
path: root/svgio
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-08-11 18:30:57 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-08-12 11:43:04 +0200
commitec3a14ba93ba0be49170afa979f299bbf9e24300 (patch)
treea04d0d29389db1643549216aee0d52911cb767e4 /svgio
parentba6519a800da9f105953436e3e70701850d4e3dc (diff)
Fix typos
Change-Id: Ia44a9dd214b5b09ed6f9c39b8057c41ae03897f1 Reviewed-on: https://gerrit.libreoffice.org/77285 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'svgio')
-rw-r--r--svgio/inc/svgnode.hxx2
-rw-r--r--svgio/source/svgreader/svgstyleattributes.cxx6
2 files changed, 4 insertions, 4 deletions
diff --git a/svgio/inc/svgnode.hxx b/svgio/inc/svgnode.hxx
index c10179bf236a..86a83e6afab6 100644
--- a/svgio/inc/svgnode.hxx
+++ b/svgio/inc/svgnode.hxx
@@ -107,7 +107,7 @@ namespace svgio
Display maDisplay;
// CSS style vector chain, used in decompose phase and built up once per node.
- // It contains the StyleHierarchy for the local node. INdependent from the
+ // It contains the StyleHierarchy for the local node. Independent from the
// node hierarchy itself which also needs to be used in style entry solving
::std::vector< const SvgStyleAttributes* > maCssStyleVector;
diff --git a/svgio/source/svgreader/svgstyleattributes.cxx b/svgio/source/svgreader/svgstyleattributes.cxx
index 9b6b81cbcdb2..b7f571478ee0 100644
--- a/svgio/source/svgreader/svgstyleattributes.cxx
+++ b/svgio/source/svgreader/svgstyleattributes.cxx
@@ -1209,7 +1209,7 @@ namespace svgio
// This is part of the SVG import of self-written SVGs from
// Draw/Impress containing multiple Slides/Pages. To be able
// to later 'break' these to multiple Pages if wanted, embed
- // each Page-Content in a identifiable Primitive Grouping
+ // each Page-Content in an identifiable Primitive Grouping
// Object.
// This is the case when the current Node is a GroupNode, has
// class="Page" set, has a parent that also is a GroupNode
@@ -2505,7 +2505,7 @@ namespace svgio
if(!maFontSizeNumber.isPositive())
return aDefaultSize;
- // #122524# Handle Unit_percent realtive to parent FontSize (see SVG1.1
+ // #122524# Handle Unit_percent relative to parent FontSize (see SVG1.1
// spec 10.10 Font selection properties \91font-size\92, lastline (click 'normative
// definition of the property')
if(Unit_percent == maFontSizeNumber.getUnit())
@@ -2969,7 +2969,7 @@ namespace svgio
SvgNumber SvgStyleAttributes::getBaselineShiftNumber() const
{
- // #122524# Handle Unit_percent realtive to parent BaselineShift
+ // #122524# Handle Unit_percent relative to parent BaselineShift
if(Unit_percent == maBaselineShiftNumber.getUnit())
{
const SvgStyleAttributes* pSvgStyleAttributes = getParentStyle();