diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2016-04-26 18:13:37 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2016-04-27 02:58:02 +0000 |
commit | 1ef1ed40cb45a095ef3458ef6012490242151772 (patch) | |
tree | 4ee6d90e87fffa9967663c82924f72f9563ff3e4 /starmath | |
parent | fe2bf7b05936bb3e84ccc5ddc3dad865a22de551 (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.cxx | 2 |
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; |