From: Pavel Sanda Date: Thu, 7 Jan 2010 16:26:52 +0000 (+0000) Subject: Fix crash X-Git-Tag: 2.0.0~4541 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=e21867818ed2a10cc23750f9994af382c5921fc0;p=features.git Fix crash git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32835 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/BufferView.cpp b/src/BufferView.cpp index 92f2e2782b..5107eb1924 100644 --- a/src/BufferView.cpp +++ b/src/BufferView.cpp @@ -1777,7 +1777,7 @@ bool BufferView::dispatch(FuncRequest const & cmd) processUpdateFlags(Update::Force); if (iterations >= max_iter) - cur.errorMessage(bformat(_("`inset-forall' interrupted because number of actions is larger than %1$s"), max_iter)); + cur.errorMessage(bformat(_("`inset-forall' interrupted because number of actions is larger than %1$d"), max_iter)); else cur.message(bformat(_("Applied \"%1$s\" to %2$d insets"), from_utf8(commandstr), iterations)); break;