summaryrefslogtreecommitdiff
path: root/core/launcher/waitpopup.cpp
authorharlekin <harlekin>2003-03-28 20:15:42 (UTC)
committer harlekin <harlekin>2003-03-28 20:15:42 (UTC)
commit5bc894df5dcd8ec35e2182ca4ad0494d6408f754 (patch) (side-by-side diff)
tree9fc09017134e2795d882ff2af1c0f7cf6c40f97b /core/launcher/waitpopup.cpp
parentfffa0df4d2cf54b2263172a3dcaa6b7611ba1eef (diff)
downloadopie-5bc894df5dcd8ec35e2182ca4ad0494d6408f754.zip
opie-5bc894df5dcd8ec35e2182ca4ad0494d6408f754.tar.gz
opie-5bc894df5dcd8ec35e2182ca4ad0494d6408f754.tar.bz2
now as owait in libopie
Diffstat (limited to 'core/launcher/waitpopup.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/waitpopup.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/core/launcher/waitpopup.cpp b/core/launcher/waitpopup.cpp
deleted file mode 100644
index e488ab5..0000000
--- a/core/launcher/waitpopup.cpp
+++ b/dev/null
@@ -1,23 +0,0 @@
-#include <qlabel.h>
-#include <qlayout.h>
-#include <qtimer.h>
-#include <qmovie.h>
-
-#include "waitpopup.h"
-#include <qpe/resource.h>
-
-
-WaitPopup::WaitPopup(QWidget *parent, const char* msg, bool dispIcon )
- :QDialog(parent, QObject::tr("Wait"), TRUE,WStyle_Customize) {
- QHBoxLayout *hbox = new QHBoxLayout( this );
- QLabel *lb;
- lb = new QLabel( this );
- //lb->setMovie( QMovie( "./wait.gif" , 200) );
- lb->setPixmap( Resource::loadPixmap( "Clock" ) );
- lb->setBackgroundMode ( NoBackground );
- hbox->addWidget( lb );
- hbox->activate();
-}
-
-WaitPopup::~WaitPopup() {
-}