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:
|
||||
explicit MainWindow(QWidget *parent = 0);
|
||||
MainWindow(const MainWindow &) = delete;
|
||||
~MainWindow();
|
||||
MainWindow &operator=(const MainWindow &) = delete;
|
||||
|
||||
public slots:
|
||||
void loadFile();
|
||||
|
|
Loading…
Reference in New Issue