author | harlekin <harlekin> | 2003-03-28 07:42:56 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2003-03-28 07:42:56 (UTC) |
commit | 827e06044df4df235912156c730baa3c87717526 (patch) (side-by-side diff) | |
tree | b4cc79ed55e987d1fc6a6c30140950ef4e4ec4f1 | |
parent | 39a71f2dfcb0116554d2806735adb394847a2027 (diff) | |
download | opie-827e06044df4df235912156c730baa3c87717526.zip opie-827e06044df4df235912156c730baa3c87717526.tar.gz opie-827e06044df4df235912156c730baa3c87717526.tar.bz2 |
close mediummount on exit .-)
-rw-r--r-- | noncore/settings/mediummount/mainwindow.cc | 7 | ||||
-rw-r--r-- | noncore/settings/mediummount/mainwindow.h | 1 |
2 files changed, 8 insertions, 0 deletions
diff --git a/noncore/settings/mediummount/mainwindow.cc b/noncore/settings/mediummount/mainwindow.cc index bfd1e21..6b37cff 100644 --- a/noncore/settings/mediummount/mainwindow.cc +++ b/noncore/settings/mediummount/mainwindow.cc @@ -66,4 +66,11 @@ void MainWindow::accept() } +void MainWindow::done ( int r ) +{ + QDialog::done( r ); + close (); +} + + void MainWindow::slotGlobalChanged(int ) { diff --git a/noncore/settings/mediummount/mainwindow.h b/noncore/settings/mediummount/mainwindow.h index 9c648ef..71dac79 100644 --- a/noncore/settings/mediummount/mainwindow.h +++ b/noncore/settings/mediummount/mainwindow.h @@ -23,4 +23,5 @@ namespace MediumMountSetting { void slotCheckingChanged(int ); void accept(); + void done( int ); private: void init(); |