summaryrefslogtreecommitdiff
path: root/core/launcher/wait.cpp
Side-by-side diff
Diffstat (limited to 'core/launcher/wait.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/wait.cpp29
1 files changed, 15 insertions, 14 deletions
diff --git a/core/launcher/wait.cpp b/core/launcher/wait.cpp
index d202d26..ab53a07 100644
--- a/core/launcher/wait.cpp
+++ b/core/launcher/wait.cpp
@@ -1,5 +1,5 @@
/**********************************************************************
-** Copyright (C) 2000 Trolltech AS. All rights reserved.
+** Copyright (C) 2000-2002 Trolltech AS. All rights reserved.
**
-** This file is part of Qtopia Environment.
+** This file is part of the Qtopia Environment.
**
@@ -22,4 +22,6 @@
-#include <qpe/resource.h>
-#include <qpe/config.h>
+#include <qtopia/resource.h>
+#include <qtopia/config.h>
+
+#include <opie/owait.h>
@@ -38,4 +40,4 @@ Wait::Wait( QWidget *parent ) : QWidget( parent ),
lastWaitObject = this;
- centralWait = new OWait( 0L );
- centralWait->hide();
+ m_centralWait = new OWait( 0l );
+ m_centralWait->hide();
hide();
@@ -53,3 +55,3 @@ void Wait::setWaiting( bool w )
Config cfg ( "Launcher" );
- cfg. setGroup ( "GUI" );
+ cfg.setGroup("GUI");
@@ -58,10 +60,9 @@ void Wait::setWaiting( bool w )
if ( w ) {
- if ( cfg. readBoolEntry ( "BigBusy" ) ) {
- centralWait->show();
- } else {
+ if ( cfg. readBoolEntry( "BigBusy" ) )
+ m_centralWait->show();
+ else
show();
- }
- } else {
- centralWait->hide();
- hide();
+ }else{
+ m_centralWait->hide();
+ hide();
}