Buffer.cpp: fix due to compiler warning

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@29170 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Uwe Stöhr 2009-04-09 22:58:51 +00:00
parent 889d3591d9
commit 305ac4e923

View File

@ -1589,7 +1589,7 @@ void Buffer::dispatch(FuncRequest const & func, DispatchResult & dr)
LYXERR0("Branch " << branchName << " does not exist.");
dr.setError(true);
docstring const msg =
bformat(_("Branch \%1$s\" does not exist."), branchName);
bformat(_("Branch \"%1$s\" does not exist."), branchName);
dr.setMessage(msg);
} else {
branch->setSelected(func.action == LFUN_BRANCH_ACTIVATE);