author | sandman <sandman> | 2002-10-21 12:39:51 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-10-21 12:39:51 (UTC) |
commit | 32817a02b4fae7010e7ef1212916168845a58831 (patch) (side-by-side diff) | |
tree | 9859d99a7e507859d06d6e9f2a03a3b8efb046a8 | |
parent | cdaf60fdf5dc19e88db4faa319daacfe4e879518 (diff) | |
download | opie-32817a02b4fae7010e7ef1212916168845a58831.zip opie-32817a02b4fae7010e7ef1212916168845a58831.tar.gz opie-32817a02b4fae7010e7ef1212916168845a58831.tar.bz2 |
Get rid of the QDir::readDirEntries: Cannot read the directory:
/opt/QtPalmtop/plugins/fontfactories message if no fontfactories are
installed -- this seems to confuse users
-rw-r--r-- | library/fontdatabase.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/library/fontdatabase.cpp b/library/fontdatabase.cpp index 147134c..899d5cf 100644 --- a/library/fontdatabase.cpp +++ b/library/fontdatabase.cpp @@ -161,6 +161,10 @@ void FontDatabase::loadRenderers() QString path = QPEApplication::qpeDir() + "/plugins/fontfactories"; QDir dir( path, "lib*.so" ); + + if ( !dir.exists()) + return; + QStringList list = dir.entryList(); QStringList::Iterator it; for ( it = list.begin(); it != list.end(); ++it ) { |