diff options
author | Anton Lundin <glance@acc.umu.se> | 2014-02-27 22:42:11 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-02-27 18:55:38 -0800 |
commit | 619d4acb6fd77386ff2f421a65148636f3d9a1ce (patch) | |
tree | 6c8a858d98d5009c7f1b293d7f37962a98d5ac75 /qt-ui | |
parent | 5bbe931b6cc5a98b1d3e78aa5473a918fb60c7ec (diff) | |
download | subsurface-619d4acb6fd77386ff2f421a65148636f3d9a1ce.tar.gz |
Remove old leftover header
This got merged into a common divelogimportdialog.
Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui')
-rw-r--r-- | qt-ui/csvimportdialog.h | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/qt-ui/csvimportdialog.h b/qt-ui/csvimportdialog.h deleted file mode 100644 index f062d49fd..000000000 --- a/qt-ui/csvimportdialog.h +++ /dev/null @@ -1,53 +0,0 @@ -#ifndef CSVIMPORTDIALOG_H -#define CSVIMPORTDIALOG_H - -#include <QDialog> -#include <QModelIndex> -#include "../dive.h" -#include "../divelist.h" - -namespace Ui { -class DiveLogImportDialog; -} - -class DiveLogImportDialog : public QDialog -{ - Q_OBJECT - -public: - explicit DiveLogImportDialog(QWidget *parent = 0); - ~DiveLogImportDialog(); - -private slots: - void on_buttonBox_accepted(); - void on_CSVFileSelector_clicked(); - void on_knownImports_currentIndexChanged(int index); - void on_CSVFile_textEdited(); - void unknownImports(int); - void unknownImports(bool); - - void on_DiveLogFileSelector_clicked(); - void on_DiveLogFile_editingFinished(); - -private: - void unknownImports(); - - bool selector; - Ui::DiveLogImportDialog *ui; - - struct CSVAppConfig { - QString name; - int time; - int depth; - int temperature; - int po2; - int cns; - int stopdepth; - QString separator; - }; - -#define CSVAPPS 4 - static const CSVAppConfig CSVApps[CSVAPPS]; -}; - -#endif // CSVIMPORTDIALOG_H |