From: Jürgen Spitzmüller Date: Tue, 17 Mar 2009 10:47:55 +0000 (+0000) Subject: * InsetMathCases.cpp: X-Git-Tag: 2.0.0~7059 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=13a1390271b38c80c2b39a7d659894e7ebf92b32;p=features.git * InsetMathCases.cpp: - fix string. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@28835 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/mathed/InsetMathCases.cpp b/src/mathed/InsetMathCases.cpp index 317c584907..32aa5a5e0f 100644 --- a/src/mathed/InsetMathCases.cpp +++ b/src/mathed/InsetMathCases.cpp @@ -103,9 +103,8 @@ bool InsetMathCases::getStatus(Cursor & cur, FuncRequest const & cmd, if (s == "append-column" || s == "delete-column") { flag.setEnabled(false); flag.message(bformat( - from_utf8(N_("Changing number of columns not allowed in\ - 'cases': feature %1$s")), - s)); + from_utf8(N_("Changing number of columns not allowed in " + "'cases': feature %1$s")), s)); return true; } }