-rw-r--r-- | noncore/settings/mediummount/mainwindow.cc | 2 | ||||
-rw-r--r-- | noncore/settings/mediummount/mainwindow.h | 2 | ||||
-rw-r--r-- | noncore/settings/mediummount/mediumwidget.cc | 11 |
3 files changed, 5 insertions, 10 deletions
diff --git a/noncore/settings/mediummount/mainwindow.cc b/noncore/settings/mediummount/mainwindow.cc index eec786c..ebe1c94 100644 --- a/noncore/settings/mediummount/mainwindow.cc +++ b/noncore/settings/mediummount/mainwindow.cc @@ -15,9 +15,9 @@ using namespace MediumMountSetting; /* TRANSLATOR MediumMountSetting::MainWindow */ -MainWindow::MainWindow( QWidget *parent, const char *name, bool modal, WFlags ) +MainWindow::MainWindow( QWidget *parent, const char *name, WFlags, bool modal ) : QDialog( parent, name, modal, WStyle_ContextHelp ) { setCaption ( tr( "Medium Mount Settings" )); diff --git a/noncore/settings/mediummount/mainwindow.h b/noncore/settings/mediummount/mainwindow.h index 9649863..7bcb7f5 100644 --- a/noncore/settings/mediummount/mainwindow.h +++ b/noncore/settings/mediummount/mainwindow.h @@ -14,9 +14,9 @@ namespace MediumMountSetting { class MediumGlobalWidget; class MainWindow : public QDialog { Q_OBJECT public: - MainWindow(QWidget *parent = 0, const char *name = 0 , bool modal = FALSE, WFlags = 0); + MainWindow(QWidget *parent = 0, const char *name = 0 , WFlags = 0, bool modal=true); ~MainWindow(); static QString appName() { return QString::fromLatin1("mediummount"); } private slots: diff --git a/noncore/settings/mediummount/mediumwidget.cc b/noncore/settings/mediummount/mediumwidget.cc index f39a6ed..ec5b9d5 100644 --- a/noncore/settings/mediummount/mediumwidget.cc +++ b/noncore/settings/mediummount/mediumwidget.cc @@ -30,13 +30,8 @@ MediumMountWidget::MediumMountWidget(const QString &path, QWidget *parent, const char *name ) : QWidget( parent, name ) { - if(parent == 0){ - resize(QApplication::desktop()->width(), QApplication::desktop()->height() ); - }else{ - resize(parent->width(), parent->height() ); - } m_path = path; initGUI(); m_label->setPixmap(pix ); m_config = 0; @@ -107,9 +102,9 @@ void MediumMountWidget::initGUI() // label m_lblPath = new QLabel(tr("Limit search to:"), this ); m_box->addWidget( m_lblPath ); - + m_subList = new QComboBox(FALSE,this,"docFolderList"); m_subList->setDuplicatesEnabled(FALSE); m_subList->setEditable(TRUE); m_box->addWidget(m_subList); @@ -118,18 +113,18 @@ void MediumMountWidget::initGUI() m_add = new QPushButton(m_hboxAdd ); m_add->setText( tr("Add") ); m_del = new QPushButton(m_hboxAdd); m_del->setText(tr("Remove")); - + connect(m_add, SIGNAL(clicked() ), this, SLOT(slotAdd() ) ); connect(m_del, SIGNAL(clicked() ), this, SLOT(slotRemove() ) ); m_box->addWidget(m_hboxAdd ); m_scan_all_check = new QCheckBox( tr("Scan whole media"), this ); connect(m_scan_all_check,SIGNAL(stateChanged(int)),this,SLOT(slotScanAllChanged(int))); - + m_box->addWidget(m_scan_all_check); m_always = new QCheckBox( tr("Always check this medium"), this ); |