summaryrefslogtreecommitdiff
path: root/core/launcher
authorharlekin <harlekin>2002-03-22 15:05:56 (UTC)
committer harlekin <harlekin>2002-03-22 15:05:56 (UTC)
commita25901e13435a44576229bbda344aedf138863b0 (patch) (side-by-side diff)
tree8175f5bdb5ea7280d18fe459d61b8ba4943dd212 /core/launcher
parent10b7c4b15d5a5a7cdbf6ab800b0911ffc67e8e7a (diff)
downloadopie-a25901e13435a44576229bbda344aedf138863b0.zip
opie-a25901e13435a44576229bbda344aedf138863b0.tar.gz
opie-a25901e13435a44576229bbda344aedf138863b0.tar.bz2
now QDialog
Diffstat (limited to 'core/launcher') (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/mediummountgui.cpp5
-rw-r--r--core/launcher/mediummountgui.h6
2 files changed, 6 insertions, 5 deletions
diff --git a/core/launcher/mediummountgui.cpp b/core/launcher/mediummountgui.cpp
index 0be90e6..2454efa 100644
--- a/core/launcher/mediummountgui.cpp
+++ b/core/launcher/mediummountgui.cpp
@@ -20,8 +20,9 @@
#include <qapplication.h>
-MediumMountGui::MediumMountGui( const QString &path ,QWidget* parent, const char* name, WFlags fl )
- : QWidget( parent, name, fl ) {
+MediumMountGui::MediumMountGui( const QString &path ,QWidget* parent, const char* name, bool modal, WFlags fl )
+ : QDialog( parent, name, modal, fl ) {
+
QWidget *d = QApplication::desktop();
int w=d->width();
diff --git a/core/launcher/mediummountgui.h b/core/launcher/mediummountgui.h
index 0da2803..700a922 100644
--- a/core/launcher/mediummountgui.h
+++ b/core/launcher/mediummountgui.h
@@ -2,7 +2,7 @@
#define MEDIUMMOUNTGUI_H
#include <qvariant.h>
-#include <qwidget.h>
+#include <qdialog.h>
class QVBoxLayout;
class QHBoxLayout;
class QGridLayout;
@@ -12,12 +12,12 @@ class QLabel;
class QLineEdit;
class QPushButton;
-class MediumMountGui : public QWidget
+class MediumMountGui : public QDialog
{
Q_OBJECT
public:
- MediumMountGui( const QString &path = "/tmp/", QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
+ MediumMountGui( const QString &path = "/tmp/", QWidget* parent = 0, const char* name = 0, bool modal = FALSE ,WFlags fl = 0 );
~MediumMountGui();
protected: