From 053c14d17b43d088c7903d92868a87aad7920bc8 Mon Sep 17 00:00:00 2001 From: Enrico Forestieri Date: Thu, 7 Dec 2006 00:49:56 +0000 Subject: [PATCH] On *nix, report the font family name instead of "Multi" * src/frontends/qt4/GuiFontLoader.C (QLFontInfo): use font.family() instead of font.rawName() as the latter always returns "Multi" on *nix. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16195 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt4/GuiFontLoader.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontends/qt4/GuiFontLoader.C b/src/frontends/qt4/GuiFontLoader.C index 00df3b43f1..fd07c8cd56 100644 --- a/src/frontends/qt4/GuiFontLoader.C +++ b/src/frontends/qt4/GuiFontLoader.C @@ -263,7 +263,7 @@ QLFontInfo::QLFontInfo(LyXFont const & f) if (lyxerr.debugging(Debug::FONT)) { lyxerr[Debug::FONT] << "Font '" << f.stateText(0) - << "' matched by\n" << fromqstr(font.rawName()) << endl; + << "' matched by\n" << fromqstr(font.family()) << endl; } // Is this an exact match?