author | zecke <zecke> | 2002-11-06 21:46:09 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-11-06 21:46:09 (UTC) |
commit | 86a2bf4747f46a9915dffac376b888faa5400ec8 (patch) (side-by-side diff) | |
tree | 247946d61e915e1c238ce87a7ee14f014fc6e804 | |
parent | 7a0e2678368c1cbb036085aaa594801e93e0b1c1 (diff) | |
download | opie-86a2bf4747f46a9915dffac376b888faa5400ec8.zip opie-86a2bf4747f46a9915dffac376b888faa5400ec8.tar.gz opie-86a2bf4747f46a9915dffac376b888faa5400ec8.tar.bz2 |
Some ugly ifdefs inside fontdatabase for now :(
This temp. helps the x11 port
-rw-r--r-- | library/fontdatabase.cpp | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/library/fontdatabase.cpp b/library/fontdatabase.cpp index 899d5cf..c7a5211 100644 --- a/library/fontdatabase.cpp +++ b/library/fontdatabase.cpp @@ -53,6 +53,6 @@ static QString fontFamily( const QString& key ) #endif -QValueList<FontFactory> *FontDatabase::factoryList = 0; +QValueList<FontFactory> *FontDatabase::factoryList = 0; /*! \class FontDatabase fontdatabase.h @@ -93,4 +93,9 @@ QStringList FontDatabase::families() const return QFontDatabase::families(); #else + +#ifndef QWS + QStringList list; + return list; +#else QStringList list; QDict<void> familyDict; @@ -116,4 +121,5 @@ QStringList FontDatabase::families() const return list; #endif +#endif } @@ -145,4 +151,8 @@ QValueList<int> FontDatabase::standardSizes() void FontDatabase::loadRenderers() { +#ifndef QWS + return; +#else + #ifndef QT_NO_COMPONENT if ( !factoryList ) @@ -184,4 +194,5 @@ void FontDatabase::loadRenderers() } #endif +#endif } @@ -191,4 +202,7 @@ void FontDatabase::loadRenderers() void FontDatabase::readFonts( QFontFactory *factory ) { +#ifndef QWS +return; +#else // Load in font definition file QString fn = fontDir() + "fontdir"; @@ -231,4 +245,5 @@ void FontDatabase::readFonts( QFontFactory *factory ) } fclose(fontdef); +#endif } |