mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Refactoring import to DiveLogImportDialog
Changing the import stuff to DiveLogImport. Now we should have one import function/dialog for importing divelogs instead of multiple menu entries. Signed-off-by: Miika Turkia <miika.turkia@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
646c6ba58b
commit
b052b790df
8 changed files with 93 additions and 59 deletions
|
@ -7,16 +7,16 @@
|
|||
#include "../divelist.h"
|
||||
|
||||
namespace Ui {
|
||||
class CSVImportDialog;
|
||||
class DiveLogImportDialog;
|
||||
}
|
||||
|
||||
class CSVImportDialog : public QDialog
|
||||
class DiveLogImportDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit CSVImportDialog(QWidget *parent = 0);
|
||||
~CSVImportDialog();
|
||||
explicit DiveLogImportDialog(QWidget *parent = 0);
|
||||
~DiveLogImportDialog();
|
||||
|
||||
private slots:
|
||||
void on_buttonBox_accepted();
|
||||
|
@ -33,7 +33,7 @@ private:
|
|||
void unknownImports();
|
||||
|
||||
bool selector;
|
||||
Ui::CSVImportDialog *ui;
|
||||
Ui::DiveLogImportDialog *ui;
|
||||
|
||||
struct CSVAppConfig {
|
||||
QString name;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue