author | mickeyl <mickeyl> | 2004-07-18 15:06:35 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-07-18 15:06:35 (UTC) |
commit | 35625ac739a9e070ceff4714328a91bb00b1f8a9 (patch) (side-by-side diff) | |
tree | cdffde2b427aecb81752d46de26c20647b71fe3f /library/qpeapplication.cpp | |
parent | f1046781fa579268146eab24e7a5dca7df515faa (diff) | |
download | opie-35625ac739a9e070ceff4714328a91bb00b1f8a9.zip opie-35625ac739a9e070ceff4714328a91bb00b1f8a9.tar.gz opie-35625ac739a9e070ceff4714328a91bb00b1f8a9.tar.bz2 |
yet another compat guard for functions added in recent qte releases
-rw-r--r-- | library/qpeapplication.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp index 3b6a987..59ca61b 100644 --- a/library/qpeapplication.cpp +++ b/library/qpeapplication.cpp @@ -1281,18 +1281,22 @@ void QPEApplication::setDefaultRotation( int r ) } } #include <qgfx_qws.h> #include <qwindowsystem_qws.h> +#if QT_VERSION > 236 extern void qws_clearLoadedFonts(); +#endif void QPEApplication::setCurrentMode( int x, int y, int depth ) { // Reset the caches +#if QT_VERSION > 236 qws_clearLoadedFonts(); +#endif QPixmapCache::clear(); // Change the screen mode qt_screen->setMode(x, y, depth); if ( qApp->type() == GuiServer ) { |