forked from qt-creator/qt-creator
Autotools: Modernize
* Use pragma once * Make sure overrides are everywhere * Clean up code here and there * Remove useless code from initializer lists Change-Id: I9c285a803ea36cb32d14b3335757fd4b57f27d02 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
@@ -25,8 +25,7 @@
|
||||
**
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef CONFIGURESTEP_H
|
||||
#define CONFIGURESTEP_H
|
||||
#pragma once
|
||||
|
||||
#include <projectexplorer/abstractprocessstep.h>
|
||||
|
||||
@@ -115,7 +114,7 @@ private:
|
||||
void ctor();
|
||||
|
||||
QString m_additionalArguments;
|
||||
bool m_runConfigure;
|
||||
bool m_runConfigure = false;
|
||||
};
|
||||
|
||||
/////////////////////////////////////
|
||||
@@ -133,8 +132,8 @@ class ConfigureStepConfigWidget : public ProjectExplorer::BuildStepConfigWidget
|
||||
public:
|
||||
ConfigureStepConfigWidget(ConfigureStep *configureStep);
|
||||
|
||||
QString displayName() const;
|
||||
QString summaryText() const;
|
||||
QString displayName() const override;
|
||||
QString summaryText() const override;
|
||||
|
||||
private slots:
|
||||
void updateDetails();
|
||||
@@ -147,6 +146,3 @@ private:
|
||||
|
||||
} // namespace Internal
|
||||
} // namespace AutotoolsProjectManager
|
||||
|
||||
#endif // CONFIGURESTEP_H
|
||||
|
||||
|
||||
Reference in New Issue
Block a user