From: Richard Heck Date: Thu, 22 Feb 2018 05:21:41 +0000 (-0500) Subject: Fix bug #10883. X-Git-Tag: lyx-2.4.0dev-acb2ca7b~3823 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=c1d8efcf4baf77ac61b8478fab1ae5f9d5a55f3b;p=features.git Fix bug #10883. --- diff --git a/src/frontends/qt4/GuiSendto.cpp b/src/frontends/qt4/GuiSendto.cpp index 627ddf2d3f..470852efc3 100644 --- a/src/frontends/qt4/GuiSendto.cpp +++ b/src/frontends/qt4/GuiSendto.cpp @@ -143,14 +143,14 @@ void GuiSendTo::dispatchParams() if (!format_ || format_->name().empty()) return; - string data = format_->name(); + string sdata = format_->name(); if (!command_.isEmpty()) - data += " " + fromqstr(command_); + sdata += " " + fromqstr(command_); FuncCode const lfun = command_.isEmpty() ? LFUN_BUFFER_EXPORT : getLfun(); - dispatch(FuncRequest(lfun, data)); + dispatch(FuncRequest(lfun, sdata)); } Dialog * createGuiSendTo(GuiView & lv) { return new GuiSendTo(lv); }