summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-08-03 22:58:01 +0200
committerJulien Nabet <serval2412@yahoo.fr>2018-08-04 09:11:19 +0200
commit3466475d09fe72c8eeaca3122d1790b3fe7b6822 (patch)
tree42fae62e26b3734a480cec00c1d0c39203708487
parentRemove local deg<->rad functions: use what we already have in basegfx (diff)
downloadcore-3466475d09fe72c8eeaca3122d1790b3fe7b6822.tar.gz
core-3466475d09fe72c8eeaca3122d1790b3fe7b6822.zip
Fix typos
Change-Id: I5ffa6366875d29c8a8bc8273057205c221e04a64 Reviewed-on: https://gerrit.libreoffice.org/58581 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r--include/drawinglayer/primitive2d/baseprimitive2d.hxx2
-rw-r--r--officecfg/registry/data/org/openoffice/Office/TableWizard.xcu2
-rw-r--r--schema/mathml2/content/calculus.xsd2
-rw-r--r--schema/mathml2/content/constants.xsd2
-rw-r--r--schema/mathml2/content/vector-calculus.xsd2
-rw-r--r--starmath/inc/caret.hxx4
6 files changed, 7 insertions, 7 deletions
diff --git a/include/drawinglayer/primitive2d/baseprimitive2d.hxx b/include/drawinglayer/primitive2d/baseprimitive2d.hxx
index 9bc8003d8ca9..8e75a0a0fc57 100644
--- a/include/drawinglayer/primitive2d/baseprimitive2d.hxx
+++ b/include/drawinglayer/primitive2d/baseprimitive2d.hxx
@@ -147,7 +147,7 @@ namespace drawinglayer
A renderer implementing support for this minimal set of primitives can completely
render primitive-based visualisations. Of course, he also has to take states into account
- which are representated by GroupPrimitive2D derivations, see groupprimitive2d.hxx
+ which are represented by GroupPrimitive2D derivations, see groupprimitive2d.hxx
To support getting the geometric BoundRect, getB2DRange is used. The default
implementation will use the get2DDecomposition result and merge a range from the
diff --git a/officecfg/registry/data/org/openoffice/Office/TableWizard.xcu b/officecfg/registry/data/org/openoffice/Office/TableWizard.xcu
index e748eda1d272..cc36445c7e4c 100644
--- a/officecfg/registry/data/org/openoffice/Office/TableWizard.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/TableWizard.xcu
@@ -6373,7 +6373,7 @@
<value xml:lang="en-US">Instructions</value>
</prop>
<prop oor:name="ShortName">
- <value xml:lang="en-US">Instrction</value>
+ <value xml:lang="en-US">Instruction</value>
</prop>
<prop oor:name="Type">
<value>-1</value>
diff --git a/schema/mathml2/content/calculus.xsd b/schema/mathml2/content/calculus.xsd
index 1b8fdb0e0305..abc057a8fec5 100644
--- a/schema/mathml2/content/calculus.xsd
+++ b/schema/mathml2/content/calculus.xsd
@@ -9,7 +9,7 @@
<xs:annotation>
<xs:documentation>
- This is an XML Schema module for the calculs operators of content
+ This is an XML Schema module for the calculus operators of content
MathML.
Author: St&#233;phane Dalmas, INRIA.
</xs:documentation>
diff --git a/schema/mathml2/content/constants.xsd b/schema/mathml2/content/constants.xsd
index a22548e26946..fc9cf8cdc029 100644
--- a/schema/mathml2/content/constants.xsd
+++ b/schema/mathml2/content/constants.xsd
@@ -44,7 +44,7 @@
<xs:element name="true" type="Constant.type"/>
<xs:element name="false" type="Constant.type"/>
-<!-- Infinty -->
+<!-- Infinity -->
<xs:element name="infinity" type="Constant.type"/>
diff --git a/schema/mathml2/content/vector-calculus.xsd b/schema/mathml2/content/vector-calculus.xsd
index 3e5dd9ce2244..12b0f85fd912 100644
--- a/schema/mathml2/content/vector-calculus.xsd
+++ b/schema/mathml2/content/vector-calculus.xsd
@@ -9,7 +9,7 @@
<xs:annotation>
<xs:documentation>
- This is an XML Schema module for the vector calculs operators of content
+ This is an XML Schema module for the vector calculus operators of content
MathML.
Author: St&#233;phane Dalmas, INRIA.
</xs:documentation>
diff --git a/starmath/inc/caret.hxx b/starmath/inc/caret.hxx
index 90ba2f899bec..327ee1d6ed16 100644
--- a/starmath/inc/caret.hxx
+++ b/starmath/inc/caret.hxx
@@ -236,7 +236,7 @@ private:
*
* \subsection caret_positions Caret Positions
*
- * A caret position in OpenOffice Math is representated by an instance of SmCaretPos.
+ * A caret position in OpenOffice Math is represented by an instance of SmCaretPos.
* That is a caret position is a node and an index related to this node. For most nodes the
* index 0, means caret is in front of this node, the index 1 means caret is after this node.
* For SmTextNode the index is the caret position after the specified number of characters,
@@ -300,7 +300,7 @@ private:
* graph is build, and how new methods should be implemented see SmCaretPosGraphBuildingVisitor.
*
* The result of the SmCaretPosGraphBuildingVisitor is a graph over the caret positions in a
- * formula, representated by an instance of SmCaretPosGraph. Each entry (instances of SmCaretPosGraphEntry)
+ * formula, represented by an instance of SmCaretPosGraph. Each entry (instances of SmCaretPosGraphEntry)
* has a pointer to the entry to the left and right of itself. This way we can easily find
* the caret position to a right or left of a given caret position. Note each caret position
* only appears once in this graph.