From c966bac490bb161cb2f5ede962a6e3e7f002e178 Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Tue, 6 Sep 2016 13:56:18 +0900 Subject: starmath: Drop unused 1st argument of SmErrorNode's ctor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I01d8fa4bcfbfd4757230ff54902967f709216111 Reviewed-on: https://gerrit.libreoffice.org/28678 Tested-by: Jenkins Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- starmath/source/cursor.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'starmath/source/cursor.cxx') diff --git a/starmath/source/cursor.cxx b/starmath/source/cursor.cxx index bdf5d31113ca..c96174167b2e 100644 --- a/starmath/source/cursor.cxx +++ b/starmath/source/cursor.cxx @@ -1661,7 +1661,7 @@ SmNode* SmNodeListParser::Postfix(){ } SmNode* SmNodeListParser::Error(){ - return new SmErrorNode(PE_UNEXPECTED_TOKEN, SmToken()); + return new SmErrorNode(SmToken()); } bool SmNodeListParser::IsOperator(const SmToken &token) { -- cgit