use our own font width cache with Qt/Mac

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14128 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2006-06-16 14:39:52 +00:00
parent fbda39f77c
commit 2b8d396ef2
2 changed files with 3 additions and 3 deletions

View File

@ -359,7 +359,7 @@ QLFontInfo::QLFontInfo(LyXFont const & f)
}
int QLFontInfo::width(Uchar val) const
int QLFontInfo::width(Uchar val)
{
// Starting with version 3.1.0, Qt/X11 does its own caching of
// character width, so it is not necessary to provide ours.

View File

@ -18,7 +18,7 @@
#include <qfont.h>
#include <qfontmetrics.h>
#if QT_VERSION < 0x030100
#if QT_VERSION < 0x030100 || defined(Q_WS_MACX)
#define USE_LYX_FONTCACHE
#endif
@ -35,7 +35,7 @@ public:
QLFontInfo(LyXFont const & f);
/// Return pixel width for the given unicode char
int width(Uchar val) const;
int width(Uchar val);
/// The font instance
QFont font;