From 608124728db223f3ee13d16b89165a46daf9e24e Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Fri, 15 Dec 2017 23:43:47 -0500 Subject: [PATCH] Fix #10859 compiler warnings. --- src/mathed/InsetMathNest.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mathed/InsetMathNest.cpp b/src/mathed/InsetMathNest.cpp index 803c946551..229b923d0f 100644 --- a/src/mathed/InsetMathNest.cpp +++ b/src/mathed/InsetMathNest.cpp @@ -813,8 +813,8 @@ void InsetMathNest::doDispatch(Cursor & cur, FuncRequest & cmd) cur.recordUndoSelection(); // if the inset can not be removed from within, delete it if (!cur.backspace(cmd.getArg(0) == "force")) { - FuncRequest cmd = FuncRequest(LFUN_CHAR_DELETE_FORWARD, "force"); - cur.innerText()->dispatch(cur, cmd); + FuncRequest newcmd = FuncRequest(LFUN_CHAR_DELETE_FORWARD, "force"); + cur.innerText()->dispatch(cur, newcmd); } break; @@ -827,8 +827,8 @@ void InsetMathNest::doDispatch(Cursor & cur, FuncRequest & cmd) cur.recordUndoSelection(); // if the inset can not be removed from within, delete it if (!cur.erase(cmd.getArg(0) == "force")) { - FuncRequest cmd = FuncRequest(LFUN_CHAR_DELETE_FORWARD, "force"); - cur.innerText()->dispatch(cur, cmd); + FuncRequest newcmd = FuncRequest(LFUN_CHAR_DELETE_FORWARD, "force"); + cur.innerText()->dispatch(cur, newcmd); } break;