summaryrefslogtreecommitdiff
path: root/starmath/source/mathmlattr.hxx
diff options
context:
space:
mode:
authorPhilipp Hofer <philipp.hofer@protonmail.com>2020-11-12 13:17:39 +0100
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2020-11-21 13:18:54 +0100
commit0108cd51faf942b3fc3a292522d4b2f421f1cf45 (patch)
tree21ae8a784a759acd24f985d8544f54d28ef6f054 /starmath/source/mathmlattr.hxx
parent2184efed3943fe9634e6e361e8b0306a374cbf59 (diff)
tdf#123936 Formatting files in module starmath with clang-format
Change-Id: I2b9e466d18ffd8033e5225d698b2dd0055e6fab7 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105711 Tested-by: Jenkins Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Diffstat (limited to 'starmath/source/mathmlattr.hxx')
-rw-r--r--starmath/source/mathmlattr.hxx11
1 files changed, 6 insertions, 5 deletions
diff --git a/starmath/source/mathmlattr.hxx b/starmath/source/mathmlattr.hxx
index 232e080e65dc..104495d2c878 100644
--- a/starmath/source/mathmlattr.hxx
+++ b/starmath/source/mathmlattr.hxx
@@ -21,7 +21,8 @@
// MathML 3: 2.1.5.2 Length Valued Attributes
// <https://www.w3.org/TR/MathML/chapter2.html#fund.units>
-enum class MathMLLengthUnit {
+enum class MathMLLengthUnit
+{
None,
Em,
Ex,
@@ -44,13 +45,13 @@ struct MathMLAttributeLengthValue
}
};
-sal_Int32 ParseMathMLAttributeLengthValue(const OUString &rStr, MathMLAttributeLengthValue& rV);
-
+sal_Int32 ParseMathMLAttributeLengthValue(const OUString& rStr, MathMLAttributeLengthValue& rV);
// MathML 3: 3.2.2 Mathematics style attributes common to token elements
// <https://www.w3.org/TR/MathML3/chapter3.html#presm.commatt>
-enum class MathMLMathvariantValue {
+enum class MathMLMathvariantValue
+{
Normal,
Bold,
Italic,
@@ -71,7 +72,7 @@ enum class MathMLMathvariantValue {
Stretched
};
-bool GetMathMLMathvariantValue(const OUString &rStr, MathMLMathvariantValue& rV);
+bool GetMathMLMathvariantValue(const OUString& rStr, MathMLMathvariantValue& rV);
#endif