mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-20 19:11:39 -06:00
Read and write the settings only from the preferences dialog. Remove all the copies of some settings which were stored in nearly every dialog class individually. Simplify the settings dialog code by removing all those not really needed slots.
28 lines
411 B
C++
28 lines
411 B
C++
#ifndef __EXPORTCSVDIALOG_H__
|
|
#define __EXPORTCSVDIALOG_H__
|
|
|
|
#include <QDialog>
|
|
class DBBrowserDB;
|
|
|
|
namespace Ui {
|
|
class ExportCsvDialog;
|
|
}
|
|
|
|
class ExportCsvDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ExportCsvDialog(DBBrowserDB* db, QWidget* parent = 0);
|
|
~ExportCsvDialog();
|
|
|
|
private slots:
|
|
virtual void accept();
|
|
|
|
private:
|
|
Ui::ExportCsvDialog* ui;
|
|
DBBrowserDB* pdb;
|
|
};
|
|
|
|
#endif
|