diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-12-22 17:11:25 +0900 |
---|---|---|
committer | Kohei Yoshida <libreoffice@kohei.us> | 2015-12-23 00:50:54 +0000 |
commit | 7ecfdc8b97543fd50ee037632454b3c51e33e4bf (patch) | |
tree | 3921d07681774481dfcc2b8c0bc87c9135165b04 /starmath | |
parent | 8d94017289885efe6c128849e0739b81173289db (diff) |
starmath: Avoid warning C4819
Change-Id: I051b2058e7c7f0424faf49f027330b1bbc93c2d9
Reviewed-on: https://gerrit.libreoffice.org/20869
Reviewed-by: Kohei Yoshida <libreoffice@kohei.us>
Tested-by: Kohei Yoshida <libreoffice@kohei.us>
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/source/visitors.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/starmath/source/visitors.cxx b/starmath/source/visitors.cxx index 2d45b239d820..8612dc5afc88 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: }"]; * } |