summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2016-04-26 18:13:37 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2016-04-27 02:58:02 +0000
commit1ef1ed40cb45a095ef3458ef6012490242151772 (patch)
tree4ee6d90e87fffa9967663c82924f72f9563ff3e4 /starmath
parentfe2bf7b05936bb3e84ccc5ddc3dad865a22de551 (diff)
starmath: Drop unnecessary cast
Change-Id: Ia892100507de7365bcecfa0708f76931f84d797b Reviewed-on: https://gerrit.libreoffice.org/24389 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Takeshi Abe <tabe@fixedpoint.jp>
Diffstat (limited to 'starmath')
-rw-r--r--starmath/source/cursor.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/starmath/source/cursor.cxx b/starmath/source/cursor.cxx
index 447fdc4a261d..61094fdcf5a5 100644
--- a/starmath/source/cursor.cxx
+++ b/starmath/source/cursor.cxx
@@ -1532,7 +1532,7 @@ bool SmCursor::IsAtTailOfBracket(SmBracketType eBracketType, SmBraceNode** ppBra
}
if (ppBraceNode) {
- *ppBraceNode = static_cast<SmBraceNode*>(pBraceNode);
+ *ppBraceNode = pBraceNode;
}
return true;