forked from qt-creator/qt-creator
ProjectExplorer: Remove redundant signals
The enabledChanged() signal is already a member of BaseAspect, so no need to repeat this signal in subclasses. Found by Axivion plugin. Change-Id: Ifc12dc97e134ff1f873df2e5fa5830be55777b81 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
@@ -118,7 +118,6 @@ signals:
|
|||||||
void environmentChanged();
|
void environmentChanged();
|
||||||
void buildDirectoryInitialized();
|
void buildDirectoryInitialized();
|
||||||
void buildDirectoryChanged();
|
void buildDirectoryChanged();
|
||||||
void enabledChanged();
|
|
||||||
void buildTypeChanged();
|
void buildTypeChanged();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|||||||
@@ -90,8 +90,6 @@ signals:
|
|||||||
void addOutput(const QString &string, OutputFormat format,
|
void addOutput(const QString &string, OutputFormat format,
|
||||||
OutputNewlineSetting newlineSetting = DoAppendNewline);
|
OutputNewlineSetting newlineSetting = DoAppendNewline);
|
||||||
|
|
||||||
void enabledChanged();
|
|
||||||
|
|
||||||
void progress(int percentage, const QString &message);
|
void progress(int percentage, const QString &message);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|||||||
@@ -174,9 +174,6 @@ public:
|
|||||||
|
|
||||||
const Utils::MacroExpander *macroExpander() const { return &m_expander; }
|
const Utils::MacroExpander *macroExpander() const { return &m_expander; }
|
||||||
|
|
||||||
signals:
|
|
||||||
void enabledChanged();
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
RunConfiguration(Target *target, Utils::Id id);
|
RunConfiguration(Target *target, Utils::Id id);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user