-rw-r--r-- | libopie/owait.cpp | 7 |
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 @@ -21,4 +21,5 @@ #include <qlayout.h> #include <qtimer.h> +#include <qpe/qpeapplication.h> #include <qpainter.h> @@ -50,5 +51,5 @@ OWait::OWait(QWidget *parent, const char* msg, bool dispIcon ) void OWait::timerEvent( QTimerEvent * ) { - frame = (++frame) % 3; + frame = (++frame) % 4; repaint(); } @@ -60,6 +61,8 @@ void OWait::paintEvent( QPaintEvent * ) { void OWait::show() { + + move( ( ( qApp->desktop()->width() ) / 2 ) - 24, ( ( qApp->desktop()->height() ) / 2 ) - 24 ); startTimer( 300 ); - m_waitTimer->start( m_timerLength * 1000, true ); + m_waitTimer->start( m_timerLength * 1000, true ); QDialog::show(); } |