From ec3a14ba93ba0be49170afa979f299bbf9e24300 Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Sun, 11 Aug 2019 18:30:57 +0200 Subject: Fix typos Change-Id: Ia44a9dd214b5b09ed6f9c39b8057c41ae03897f1 Reviewed-on: https://gerrit.libreoffice.org/77285 Tested-by: Jenkins Reviewed-by: Julien Nabet --- svgio/inc/svgnode.hxx | 2 +- svgio/source/svgreader/svgstyleattributes.cxx | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'svgio') 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(); -- cgit