From 8dcc7cf00eaaf9b9b28a72560081bbfca6145961 Mon Sep 17 00:00:00 2001 From: Michael Schmitt Date: Tue, 1 May 2007 10:25:46 +0000 Subject: [PATCH] * src/Text2.cpp: fix error message (do not refer to old, non-existing menu item); I wonder whether this message is used at all, as it does not occur when runnig font-free-apply after program start git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18149 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/Text2.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Text2.cpp b/src/Text2.cpp index 9c9635b975..c4f9af1d01 100644 --- a/src/Text2.cpp +++ b/src/Text2.cpp @@ -537,8 +537,7 @@ void Text::toggleFree(Cursor & cur, Font const & font, bool toggleall) // If the mask is completely neutral, tell user if (font == Font(Font::ALL_IGNORE)) { // Could only happen with user style - cur.message(_("No font change defined. " - "Use Character under the Layout menu to define font change.")); + cur.message(_("No font change defined.")); return; }