make sure getStatus errors are actually translated in the minibuffer

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@9782 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2005-04-05 12:28:05 +00:00
parent b0131907f6
commit c29dad7a97
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-03-30 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* lyxfunc.C (dispatch): translate message before sending it to the
minibuffer.
2005-02-25 Angus Leeming <leeming@lyx.org>
* lyxfunc.C: remove unnecessary #include "support/forkedcontr.h".

View File

@ -1538,7 +1538,7 @@ void LyXFunc::dispatch(FuncRequest const & ev, bool verbose)
} // end of switch
exit_with_message:
sendDispatchMessage(getMessage(), ev, verbose);
sendDispatchMessage(_(getMessage()), ev, verbose);
}