forked from qt-creator/qt-creator
Fix warnings on windows
Fix warnings on windows about overwriting virtual functions Change-Id: I83e0262627faa4ce23624678de1b69f30624dc6a Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
This commit is contained in:
@@ -90,7 +90,7 @@ private:
|
||||
class CreateMatcher : public RunConfigurationFactoryMatcher
|
||||
{
|
||||
public:
|
||||
CreateMatcher(Target *target, Core::Id id) :
|
||||
CreateMatcher(Target *target, const Core::Id id) :
|
||||
RunConfigurationFactoryMatcher(target),
|
||||
m_id(id)
|
||||
{ }
|
||||
@@ -101,7 +101,7 @@ public:
|
||||
}
|
||||
|
||||
private:
|
||||
Core::Id m_id;
|
||||
const Core::Id m_id;
|
||||
};
|
||||
|
||||
class CloneMatcher : public RunConfigurationFactoryMatcher
|
||||
|
||||
Reference in New Issue
Block a user