From 5416e09ebf582c42a33567002f01cba6c4a7b5ef Mon Sep 17 00:00:00 2001 From: Pavel Sanda Date: Tue, 5 May 2009 09:26:40 +0000 Subject: [PATCH] Heh, wrong shift ;) git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@29544 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/Font.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Font.cpp b/src/Font.cpp index cf716d273b..8d5a018976 100644 --- a/src/Font.cpp +++ b/src/Font.cpp @@ -177,13 +177,13 @@ docstring const stateText(FontInfo const & f) _(GUIMiscNames[f.underbar()])); if (f.strikeout() != FONT_INHERIT) os << bformat(_("Strikeout %1$s, "), - _(GUIMiscNames[f.uuline()])); + _(GUIMiscNames[f.strikeout()])); if (f.uuline() != FONT_INHERIT) os << bformat(_("Double underline %1$s, "), - _(GUIMiscNames[f.uwave()])); + _(GUIMiscNames[f.uuline()])); if (f.uwave() != FONT_INHERIT) os << bformat(_("Wavy underline %1$s, "), - _(GUIMiscNames[f.strikeout()])); + _(GUIMiscNames[f.uwave()])); if (f.noun() != FONT_INHERIT) os << bformat(_("Noun %1$s, "), _(GUIMiscNames[f.noun()])); -- 2.39.2