Fix noCopyConstructor and noOperatorEq warnings in tools/triage/mainwindow.h
This commit is contained in:
parent
2470c711e4
commit
3ef1627d11
|
@ -13,7 +13,9 @@ class MainWindow : public QMainWindow {
|
||||||
|
|
||||||
public:
|
public:
|
||||||
explicit MainWindow(QWidget *parent = 0);
|
explicit MainWindow(QWidget *parent = 0);
|
||||||
|
MainWindow(const MainWindow &) = delete;
|
||||||
~MainWindow();
|
~MainWindow();
|
||||||
|
MainWindow &operator=(const MainWindow &) = delete;
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void loadFile();
|
void loadFile();
|
||||||
|
|
Loading…
Reference in New Issue