From: Pavel Sanda Date: Tue, 5 May 2009 09:26:40 +0000 (+0000) Subject: Heh, wrong shift ;) X-Git-Tag: 2.0.0~6661 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=5416e09ebf582c42a33567002f01cba6c4a7b5ef;p=features.git Heh, wrong shift ;) git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@29544 a592a061-630c-0410-9148-cb99ea01b6c8 --- 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()]));