From ce005981ab07044d90f07645b0e1d10391ee21ba Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Mon, 22 Sep 2014 12:29:36 +0200 Subject: [PATCH] ProjectExplorer: Fix compile with MSVC2010 Task-number: QTCREATORBUG-13082 Change-Id: I669504be2241d0101dabd0c2ce0b1f29c87218f3 Reviewed-by: David Schulz --- src/plugins/projectexplorer/jsonwizard/jsonwizard.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/projectexplorer/jsonwizard/jsonwizard.cpp b/src/plugins/projectexplorer/jsonwizard/jsonwizard.cpp index 1a5537ef52a..6c56be6d371 100644 --- a/src/plugins/projectexplorer/jsonwizard/jsonwizard.cpp +++ b/src/plugins/projectexplorer/jsonwizard/jsonwizard.cpp @@ -85,7 +85,7 @@ JsonWizard::GeneratorFiles JsonWizard::fileList() if (!errorMessage.isEmpty()) break; list.append(Utils::transform(tmp, [&gen](const Core::GeneratedFile &f) - { return GeneratorFile(f, gen); })); + { return ProjectExplorer::JsonWizard::GeneratorFile(f, gen); })); } if (errorMessage.isEmpty())