summaryrefslogtreecommitdiff
path: root/core/launcher/wait.h
Unidiff
Diffstat (limited to 'core/launcher/wait.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/wait.h12
1 files changed, 5 insertions, 7 deletions
diff --git a/core/launcher/wait.h b/core/launcher/wait.h
index d7c29bd..e7294d2 100644
--- a/core/launcher/wait.h
+++ b/core/launcher/wait.h
@@ -1,7 +1,7 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2000 Trolltech AS. All rights reserved. 2** Copyright (C) 2000-2002 Trolltech AS. All rights reserved.
3** 3**
4** This file is part of Qtopia Environment. 4** This file is part of the Qtopia Environment.
5** 5**
6** This file may be distributed and/or modified under the terms of the 6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software 7** GNU General Public License version 2 as published by the Free Software
@@ -21,15 +21,13 @@
21#ifndef __WAIT_H__ 21#ifndef __WAIT_H__
22#define __WAIT_H__ 22#define __WAIT_H__
23 23
24#include <opie/owait.h> 24#include <qtopia/resource.h>
25
26#include <qpe/resource.h>
27 25
28#include <qwidget.h> 26#include <qwidget.h>
29#include <qlabel.h>
30#include <qpixmap.h> 27#include <qpixmap.h>
31#include <qpainter.h> 28#include <qpainter.h>
32 29
30class OWait;
33class Wait : public QWidget 31class Wait : public QWidget
34{ 32{
35public: 33public:
@@ -38,9 +36,9 @@ public:
38 void paintEvent( QPaintEvent * ); 36 void paintEvent( QPaintEvent * );
39 static Wait *getWaitObject(); 37 static Wait *getWaitObject();
40private: 38private:
41 OWait* centralWait;
42 QPixmap pm; 39 QPixmap pm;
43 bool waiting; 40 bool waiting;
41 OWait* m_centralWait;
44}; 42};
45 43
46 44