Skip to content
Snippets Groups Projects
Commit edeb93d6 authored by Oswald Buddenhagen's avatar Oswald Buddenhagen
Browse files

micro-optimization

parent 780abd0d
No related branches found
No related tags found
No related merge requests found
......@@ -407,7 +407,7 @@ QString Qt4Project::makeCommand(const QString &buildConfiguration) const
QString Qt4Project::defaultMakeTarget(const QString &buildConfiguration) const
{
ToolChain *tc = toolChain(buildConfiguration);
return tc ? toolChain(buildConfiguration)->defaultMakeTarget() : "";
return tc ? tc->defaultMakeTarget() : "";
}
void Qt4Project::updateCodeModel()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment