summaryrefslogtreecommitdiff
authorharlekin <harlekin>2002-03-22 15:05:56 (UTC)
committer harlekin <harlekin>2002-03-22 15:05:56 (UTC)
commita25901e13435a44576229bbda344aedf138863b0 (patch) (unidiff)
tree8175f5bdb5ea7280d18fe459d61b8ba4943dd212
parent10b7c4b15d5a5a7cdbf6ab800b0911ffc67e8e7a (diff)
downloadopie-a25901e13435a44576229bbda344aedf138863b0.zip
opie-a25901e13435a44576229bbda344aedf138863b0.tar.gz
opie-a25901e13435a44576229bbda344aedf138863b0.tar.bz2
now QDialog
Diffstat (more/less context) (show 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
@@ -22,4 +22,5 @@
22 22
23MediumMountGui::MediumMountGui( const QString &path ,QWidget* parent, const char* name, WFlags fl ) 23MediumMountGui::MediumMountGui( const QString &path ,QWidget* parent, const char* name, bool modal, WFlags fl )
24 : QWidget( parent, name, fl ) { 24 : QDialog( parent, name, modal, fl ) {
25
25 26
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
@@ -4,3 +4,3 @@
4#include <qvariant.h> 4#include <qvariant.h>
5#include <qwidget.h> 5#include <qdialog.h>
6class QVBoxLayout; 6class QVBoxLayout;
@@ -14,3 +14,3 @@ class QPushButton;
14 14
15class MediumMountGui : public QWidget 15class MediumMountGui : public QDialog
16{ 16{
@@ -19,3 +19,3 @@ class MediumMountGui : public QWidget
19public: 19public:
20 MediumMountGui( const QString &path = "/tmp/", QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); 20 MediumMountGui( const QString &path = "/tmp/", QWidget* parent = 0, const char* name = 0, bool modal = FALSE ,WFlags fl = 0 );
21 ~MediumMountGui(); 21 ~MediumMountGui();