]> git.lyx.org Git - lyx.git/commitdiff
Buffer.cpp: fix due to compiler warning
authorUwe Stöhr <uwestoehr@web.de>
Thu, 9 Apr 2009 22:58:51 +0000 (22:58 +0000)
committerUwe Stöhr <uwestoehr@web.de>
Thu, 9 Apr 2009 22:58:51 +0000 (22:58 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@29170 a592a061-630c-0410-9148-cb99ea01b6c8

src/Buffer.cpp

index f039b180b36b6ae9e8766054179dd2ee3d155f86..3ec76bbb73adc8dfe2078d2623fdc80283d555be 100644 (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);