summaryrefslogtreecommitdiff
path: root/library/qpeapplication.cpp
Unidiff
Diffstat (limited to 'library/qpeapplication.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--library/qpeapplication.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp
index a55f5f9..c154689 100644
--- a/library/qpeapplication.cpp
+++ b/library/qpeapplication.cpp
@@ -1258,51 +1258,51 @@ void QPEApplication::internalSetStyle( const QString &style )
1258 setStyle( new QPlatinumStyle ); 1258 setStyle( new QPlatinumStyle );
1259 } 1259 }
1260#endif 1260#endif
1261#ifndef QT_NO_STYLE_MOTIF 1261#ifndef QT_NO_STYLE_MOTIF
1262 else if ( style == "Motif" ) { 1262 else if ( style == "Motif" ) {
1263 setStyle( new QMotifStyle ); 1263 setStyle( new QMotifStyle );
1264 } 1264 }
1265#endif 1265#endif
1266#ifndef QT_NO_STYLE_MOTIFPLUS 1266#ifndef QT_NO_STYLE_MOTIFPLUS
1267 else if ( style == "MotifPlus" ) { 1267 else if ( style == "MotifPlus" ) {
1268 setStyle( new QMotifPlusStyle ); 1268 setStyle( new QMotifPlusStyle );
1269 } 1269 }
1270#endif 1270#endif
1271#endif 1271#endif
1272} 1272}
1273 1273
1274/*! 1274/*!
1275 \internal 1275 \internal
1276*/ 1276*/
1277void QPEApplication::prepareForTermination(bool willrestart) 1277void QPEApplication::prepareForTermination(bool willrestart)
1278{ 1278{
1279 if ( willrestart ) { 1279 if ( willrestart ) {
1280 // Draw a big wait icon, the image can be altered in later revisions 1280 // Draw a big wait icon, the image can be altered in later revisions
1281 //QWidget *d = QApplication::desktop(); 1281 //QWidget *d = QApplication::desktop();
1282 QImage img = Resource::loadImage( "wait" ); 1282 QImage img = Resource::loadImage( "launcher/new_wait" );
1283 QPixmap pix; 1283 QPixmap pix;
1284 pix.convertFromImage(img.smoothScale(3*img.width(), 3*img.height())); 1284 pix.convertFromImage(img.smoothScale(1*img.width(), 1*img.height()));
1285 QLabel *lblWait = new QLabel(0, "wait hack!", QWidget::WStyle_Customize | 1285 QLabel *lblWait = new QLabel(0, "wait hack!", QWidget::WStyle_Customize |
1286 QWidget::WStyle_NoBorder | QWidget::WStyle_Tool ); 1286 QWidget::WStyle_NoBorder | QWidget::WStyle_Tool );
1287 lblWait->setPixmap( pix ); 1287 lblWait->setPixmap( pix );
1288 lblWait->setAlignment( QWidget::AlignCenter ); 1288 lblWait->setAlignment( QWidget::AlignCenter );
1289 lblWait->show(); 1289 lblWait->show();
1290 lblWait->showMaximized(); 1290 lblWait->showMaximized();
1291 } 1291 }
1292#ifndef SINGLE_APP 1292#ifndef SINGLE_APP
1293 { QCopEnvelope envelope("QPE/System", "forceQuit()"); } 1293 { QCopEnvelope envelope("QPE/System", "forceQuit()"); }
1294 processEvents(); // ensure the message goes out. 1294 processEvents(); // ensure the message goes out.
1295 sleep(1); // You have 1 second to comply. 1295 sleep(1); // You have 1 second to comply.
1296#endif 1296#endif
1297} 1297}
1298 1298
1299/*! 1299/*!
1300 \internal 1300 \internal
1301*/ 1301*/
1302void QPEApplication::shutdown() 1302void QPEApplication::shutdown()
1303{ 1303{
1304 // Implement in server's QPEApplication subclass 1304 // Implement in server's QPEApplication subclass
1305} 1305}
1306 1306
1307/*! 1307/*!
1308 \internal 1308 \internal