mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-20 11:00:44 -06:00
Make many methods and attributes of classes private
Make most variables, functions, slots etc. private instead of public. Also make the constructors explicit.
This commit is contained in:
@@ -13,10 +13,10 @@ class ImportCsvDialog : public QDialog
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
ImportCsvDialog(QString filename, DBBrowserDB* db, QWidget* parent = 0);
|
||||
explicit ImportCsvDialog(QString filename, DBBrowserDB* db, QWidget* parent = 0);
|
||||
~ImportCsvDialog();
|
||||
|
||||
protected slots:
|
||||
private slots:
|
||||
virtual void accept();
|
||||
virtual void updatePreview();
|
||||
virtual void checkInput();
|
||||
|
||||
Reference in New Issue
Block a user