forked from qt-creator/qt-creator
ProjectExplorer: Modernize
* Use override where appropriate * Use pragma once * Make more constructors explicit Change-Id: I2865fe10f288e3de570826058e43b70a0cb4ee37 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
@@ -23,8 +23,7 @@
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef PROJECTWIZARDPAGE_H
|
||||
#define PROJECTWIZARDPAGE_H
|
||||
#pragma once
|
||||
|
||||
#include "projectnodes.h"
|
||||
|
||||
@@ -55,7 +54,7 @@ class ProjectWizardPage : public Utils::WizardPage
|
||||
|
||||
public:
|
||||
explicit ProjectWizardPage(QWidget *parent = 0);
|
||||
virtual ~ProjectWizardPage();
|
||||
~ProjectWizardPage() override;
|
||||
|
||||
FolderNode *currentNode() const;
|
||||
|
||||
@@ -106,5 +105,3 @@ private:
|
||||
|
||||
} // namespace Internal
|
||||
} // namespace ProjectExplorer
|
||||
|
||||
#endif // PROJECTWIZARDPAGE_H
|
||||
|
||||
Reference in New Issue
Block a user