get rid of QT3_SUPPORT and some cleanup

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14725 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2006-08-17 08:46:38 +00:00
parent 8762a5cab8
commit e2cf98e4f5

View File

@ -312,7 +312,7 @@ QLFontInfo::QLFontInfo(LyXFont const & f)
} }
} }
font.setPointSizeFloat(convert<double>(lyxrc.font_sizes[f.size()]) font.setPointSizeF(convert<double>(lyxrc.font_sizes[f.size()])
* lyxrc.zoom / 100.0); * lyxrc.zoom / 100.0);
switch (f.series()) { switch (f.series()) {
@ -337,11 +337,11 @@ QLFontInfo::QLFontInfo(LyXFont const & f)
if (lyxerr.debugging(Debug::FONT)) { if (lyxerr.debugging(Debug::FONT)) {
lyxerr[Debug::FONT] << "Font '" << f.stateText(0) lyxerr[Debug::FONT] << "Font '" << f.stateText(0)
<< "' matched by\n" << (const char *) font.rawName() << endl; << "' matched by\n" << fromqstr(font.rawName()) << endl;
} }
lyxerr[Debug::FONT] << "The font has size: " lyxerr[Debug::FONT] << "The font has size: "
<< font.pointSizeFloat() << endl; << font.pointSizeF() << endl;
// Is this an exact match? // Is this an exact match?
if (font.exactMatch()) if (font.exactMatch())
@ -350,7 +350,7 @@ QLFontInfo::QLFontInfo(LyXFont const & f)
lyxerr[Debug::FONT] << "This font is NOT an exact match" lyxerr[Debug::FONT] << "This font is NOT an exact match"
<< endl; << endl;
lyxerr[Debug::FONT] << "XFLD: " << (const char *) font.rawName() << endl; lyxerr[Debug::FONT] << "XFLD: " << fromqstr(font.rawName()) << endl;
metrics = QFontMetrics(font); metrics = QFontMetrics(font);
} }