diff options
author | Alessandro Portale <alessandro.portale@nokia.com> | 2010-03-29 17:01:26 (GMT) |
---|---|---|
committer | Alessandro Portale <alessandro.portale@nokia.com> | 2010-03-29 17:05:30 (GMT) |
commit | f68b3b765cc4ed15766ff9334e12757f87bf3763 (patch) | |
tree | 309dc6306aedad25b40dc7a90df5d5b4dfc657e8 | |
parent | e3999a4f91194b7508dbd1d3e6f595f729022ed7 (diff) | |
download | Qt-f68b3b765cc4ed15766ff9334e12757f87bf3763.zip Qt-f68b3b765cc4ed15766ff9334e12757f87bf3763.tar.gz Qt-f68b3b765cc4ed15766ff9334e12757f87bf3763.tar.bz2 |
Adding QFontDatabase::removeAllApplicationFonts()
It was missing and not covered by the standard autotests, so its
missing was not detected for quite some time.
Task-number: QTBUG-8423
Reviewed-By: Shane Kearns
-rw-r--r-- | src/gui/text/qfontdatabase_s60.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gui/text/qfontdatabase_s60.cpp b/src/gui/text/qfontdatabase_s60.cpp index 621f666..ef5e0c4 100644 --- a/src/gui/text/qfontdatabase_s60.cpp +++ b/src/gui/text/qfontdatabase_s60.cpp @@ -332,6 +332,11 @@ bool QFontDatabase::removeApplicationFont(int handle) return false; } +bool QFontDatabase::removeAllApplicationFonts() +{ + return false; +} + bool QFontDatabase::supportsThreadedFontRendering() { return false; |