summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/owait.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/libopie/owait.cpp b/libopie/owait.cpp
index c7c4445..7ed66eb 100644
--- a/libopie/owait.cpp
+++ b/libopie/owait.cpp
@@ -20,6 +20,7 @@
20#include <qlabel.h> 20#include <qlabel.h>
21#include <qlayout.h> 21#include <qlayout.h>
22#include <qtimer.h> 22#include <qtimer.h>
23#include <qpe/qpeapplication.h>
23#include <qpainter.h> 24#include <qpainter.h>
24 25
25#include "owait.h" 26#include "owait.h"
@@ -49,7 +50,7 @@ OWait::OWait(QWidget *parent, const char* msg, bool dispIcon )
49} 50}
50 51
51void OWait::timerEvent( QTimerEvent * ) { 52void OWait::timerEvent( QTimerEvent * ) {
52 frame = (++frame) % 3; 53 frame = (++frame) % 4;
53 repaint(); 54 repaint();
54} 55}
55 56
@@ -59,8 +60,10 @@ void OWait::paintEvent( QPaintEvent * ) {
59} 60}
60 61
61void OWait::show() { 62void OWait::show() {
63
64 move( ( ( qApp->desktop()->width() ) / 2 ) - 24, ( ( qApp->desktop()->height() ) / 2 ) - 24 );
62 startTimer( 300 ); 65 startTimer( 300 );
63 m_waitTimer->start( m_timerLength * 1000, true ); 66 m_waitTimer->start( m_timerLength * 1000, true );
64 QDialog::show(); 67 QDialog::show();
65} 68}
66 69