-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 | |||
@@ -1271,38 +1271,42 @@ void QPEApplication::setDefaultRotation( int r ) | |||
1271 | config.setGroup( "Rotation" ); | 1271 | config.setGroup( "Rotation" ); |
1272 | config.writeEntry( "Rot", r ); | 1272 | config.writeEntry( "Rot", r ); |
1273 | } | 1273 | } |
1274 | else { | 1274 | else { |
1275 | #ifndef QT_NO_COP | 1275 | #ifndef QT_NO_COP |
1276 | { QCopEnvelope e( "QPE/System", "setDefaultRotation(int)" ); | 1276 | { QCopEnvelope e( "QPE/System", "setDefaultRotation(int)" ); |
1277 | e << r; | 1277 | e << r; |
1278 | } | 1278 | } |
1279 | #endif | 1279 | #endif |
1280 | 1280 | ||
1281 | } | 1281 | } |
1282 | } | 1282 | } |
1283 | 1283 | ||
1284 | #include <qgfx_qws.h> | 1284 | #include <qgfx_qws.h> |
1285 | #include <qwindowsystem_qws.h> | 1285 | #include <qwindowsystem_qws.h> |
1286 | 1286 | ||
1287 | #if QT_VERSION > 236 | ||
1287 | extern void qws_clearLoadedFonts(); | 1288 | extern void qws_clearLoadedFonts(); |
1289 | #endif | ||
1288 | 1290 | ||
1289 | void QPEApplication::setCurrentMode( int x, int y, int depth ) | 1291 | void QPEApplication::setCurrentMode( int x, int y, int depth ) |
1290 | { | 1292 | { |
1291 | // Reset the caches | 1293 | // Reset the caches |
1294 | #if QT_VERSION > 236 | ||
1292 | qws_clearLoadedFonts(); | 1295 | qws_clearLoadedFonts(); |
1296 | #endif | ||
1293 | QPixmapCache::clear(); | 1297 | QPixmapCache::clear(); |
1294 | 1298 | ||
1295 | // Change the screen mode | 1299 | // Change the screen mode |
1296 | qt_screen->setMode(x, y, depth); | 1300 | qt_screen->setMode(x, y, depth); |
1297 | 1301 | ||
1298 | if ( qApp->type() == GuiServer ) { | 1302 | if ( qApp->type() == GuiServer ) { |
1299 | #if QT_VERSION > 236 | 1303 | #if QT_VERSION > 236 |
1300 | // Reconfigure the GuiServer | 1304 | // Reconfigure the GuiServer |
1301 | qwsServer->beginDisplayReconfigure(); | 1305 | qwsServer->beginDisplayReconfigure(); |
1302 | qwsServer->endDisplayReconfigure(); | 1306 | qwsServer->endDisplayReconfigure(); |
1303 | #endif | 1307 | #endif |
1304 | // Get all the running apps to reset | 1308 | // Get all the running apps to reset |
1305 | QCopEnvelope env( "QPE/System", "reset()" ); | 1309 | QCopEnvelope env( "QPE/System", "reset()" ); |
1306 | } | 1310 | } |
1307 | } | 1311 | } |
1308 | 1312 | ||