summaryrefslogtreecommitdiff
path: root/core/launcher/wait.cpp
authorzecke <zecke>2003-08-28 14:51:14 (UTC)
committer zecke <zecke>2003-08-28 14:51:14 (UTC)
commit0fac4909554179fa212c7c9e350735e0a058879e (patch) (side-by-side diff)
treec77bcbb1e1f0fef765b21eda678b8ad7c0f74dd8 /core/launcher/wait.cpp
parent225fa91f6d57f211d53ec686518ca15fc5278d21 (diff)
downloadopie-0fac4909554179fa212c7c9e350735e0a058879e.zip
opie-0fac4909554179fa212c7c9e350735e0a058879e.tar.gz
opie-0fac4909554179fa212c7c9e350735e0a058879e.tar.bz2
Use owait
Harlekin you're not destroying owait...
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,7 +1,7 @@
/**********************************************************************
-** 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.
**
** This file may be distributed and/or modified under the terms of the
** GNU General Public License version 2 as published by the Free Software
@@ -20,8 +20,10 @@
#include "wait.h"
-#include <qpe/resource.h>
-#include <qpe/config.h>
+#include <qtopia/resource.h>
+#include <qtopia/config.h>
+
+#include <opie/owait.h>
#include <qwidget.h>
#include <qpixmap.h>
@@ -36,8 +38,8 @@ Wait::Wait( QWidget *parent ) : QWidget( parent ),
{
setFixedSize( pm.size() );
lastWaitObject = this;
- centralWait = new OWait( 0L );
- centralWait->hide();
+ m_centralWait = new OWait( 0l );
+ m_centralWait->hide();
hide();
}
@@ -51,19 +53,18 @@ Wait *Wait::getWaitObject()
void Wait::setWaiting( bool w )
{
Config cfg ( "Launcher" );
- cfg. setGroup ( "GUI" );
+ cfg.setGroup("GUI");
waiting = 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();
}
}