author | tille <tille> | 2003-05-12 11:59:38 (UTC) |
---|---|---|
committer | tille <tille> | 2003-05-12 11:59:38 (UTC) |
commit | 65a043f4ac4b43967947c1e8d99c629bb993f065 (patch) (unidiff) | |
tree | ad253467cc0ae1ef98b7967b4b84d7b0174c5e8c | |
parent | 47a67025a4d34635877ece741def266e28e46db8 (diff) | |
download | opie-65a043f4ac4b43967947c1e8d99c629bb993f065.zip opie-65a043f4ac4b43967947c1e8d99c629bb993f065.tar.gz opie-65a043f4ac4b43967947c1e8d99c629bb993f065.tar.bz2 |
ok button gone
-rw-r--r-- | noncore/apps/confedit/mainwindow.cpp | 12 | ||||
-rw-r--r-- | noncore/apps/confedit/mainwindow.h | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/noncore/apps/confedit/mainwindow.cpp b/noncore/apps/confedit/mainwindow.cpp index 3b8042f..8e36980 100644 --- a/noncore/apps/confedit/mainwindow.cpp +++ b/noncore/apps/confedit/mainwindow.cpp | |||
@@ -37,4 +37,4 @@ | |||
37 | MainWindow::MainWindow( QWidget *parent, const char *name, WFlags f ) : | 37 | MainWindow::MainWindow( QWidget *parent, const char *name, WFlags f ) : |
38 | QDialog( parent, name, f ), _currentItem(0), _fileItem(0) | 38 | QMainWindow( parent, name, f ), _currentItem(0), _fileItem(0) |
39 | { | 39 | { |
40 | setCaption( tr("Conf File Editor") ); | 40 | setCaption( tr("Conf File Editor") ); |
@@ -65,3 +65,3 @@ MainWindow::MainWindow( QWidget *parent, const char *name, WFlags f ) : | |||
65 | connect( settingList, SIGNAL( clicked( QListViewItem* ) ), | 65 | connect( settingList, SIGNAL( clicked( QListViewItem* ) ), |
66 | this, SLOT( stopTimer( QListViewItem* ) ) ); | 66 | this, SLOT( stopTimer( QListViewItem* ) ) ); |
67 | 67 | ||
@@ -172,3 +172,3 @@ void MainWindow::saveConfFile() | |||
172 | { | 172 | { |
173 | if (!_fileItem) return; | 173 | if (!_fileItem) return; |
174 | _fileItem->save(); | 174 | _fileItem->save(); |
@@ -178,3 +178,3 @@ void MainWindow::revertConfFile() | |||
178 | { | 178 | { |
179 | if (!_item) return; | 179 | if (!_item) return; |
180 | _item->revert(); | 180 | _item->revert(); |
@@ -184,3 +184,3 @@ void MainWindow::removeConfFile() | |||
184 | { | 184 | { |
185 | if (!_item) return; | 185 | if (!_item) return; |
186 | _item->remove(); | 186 | _item->remove(); |
diff --git a/noncore/apps/confedit/mainwindow.h b/noncore/apps/confedit/mainwindow.h index 5be4a86..878558a 100644 --- a/noncore/apps/confedit/mainwindow.h +++ b/noncore/apps/confedit/mainwindow.h | |||
@@ -26,3 +26,3 @@ class ListViewItemConf; | |||
26 | 26 | ||
27 | class MainWindow : public QDialog//QMainWindow | 27 | class MainWindow : public QMainWindow |
28 | { | 28 | { |