[Libreoffice-commits] core.git: starmath/source
Takeshi Abe
tabe at fixedpoint.jp
Tue Dec 22 16:51:34 PST 2015
starmath/source/visitors.cxx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
New commits:
commit 7ecfdc8b97543fd50ee037632454b3c51e33e4bf
Author: Takeshi Abe <tabe at fixedpoint.jp>
Date: Tue Dec 22 17:11:25 2015 +0900
starmath: Avoid warning C4819
Change-Id: I051b2058e7c7f0424faf49f027330b1bbc93c2d9
Reviewed-on: https://gerrit.libreoffice.org/20869
Reviewed-by: Kohei Yoshida <libreoffice at kohei.us>
Tested-by: Kohei Yoshida <libreoffice at kohei.us>
diff --git a/starmath/source/visitors.cxx b/starmath/source/visitors.cxx
index 2d45b23..8612dc5 100644
--- a/starmath/source/visitors.cxx
+++ b/starmath/source/visitors.cxx
@@ -1319,7 +1319,7 @@ void SmCaretPosGraphBuildingVisitor::Visit( SmFontNode* pNode )
* n6 -> n7 [label="0"];
* n7 [label="SmTextNode: i"];
* n5 -> n8 [label="1"];
- * n8 [label="SmMathSymbolNode: ∣"];
+ * n8 [label="SmMathSymbolNode: |"]; // Unicode "VERTICAL LINE"
* n5 -> n9 [label="2"];
* n9 [label="SmExpressionNode"];
* n9 -> n10 [label="0"];
@@ -1327,9 +1327,9 @@ void SmCaretPosGraphBuildingVisitor::Visit( SmFontNode* pNode )
* n10 -> n11 [label="0"];
* n11 [label="SmTextNode: i"];
* n10 -> n12 [label="1"];
- * n12 [label="SmMathSymbolNode: ∈"];
+ * n12 [label="SmMathSymbolNode: ∈"]; // Unicode "ELEMENT OF"
* n10 -> n13 [label="2"];
- * n13 [label="SmMathSymbolNode: ℤ"];
+ * n13 [label="SmMathSymbolNode: ℤ"]; // Unicode "DOUBLE-STRUCK CAPITAL Z"
* n3 -> n14 [label="2"];
* n14 [label="SmMathSymbolNode: }"];
* }
More information about the Libreoffice-commits
mailing list