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:
Tobias Hunger
2012-04-25 16:14:25 +02:00
parent fd547e4c5b
commit 83192865e7
27 changed files with 49 additions and 49 deletions

View File

@@ -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