summaryrefslogtreecommitdiffstats
path: root/qmake
diff options
context:
space:
mode:
authorJonathan Meier <jonathan.meier@outlook.com>2015-09-05 11:38:56 +0200
committerJoerg Bornemann <joerg.bornemann@theqtcompany.com>2015-09-07 08:56:34 +0000
commitd05bb9ffb05be57b9ef8e961cc17111b1bdaffc8 (patch)
tree5fd9f7dea425bc4aca80dc3189df01cf3a91a011 /qmake
parent0552331d0e42e7b73f36e31ffd3cc511b50d2ec0 (diff)
Fix qmake messing up headers of generated Visual Studio solution files
While generating Visual Studio 2015 solution files for a project using the subdirs template qmake writes out both the header for version 2015 and version 2013. The problem is a case fall-through. Task-number: QTBUG-48110 Change-Id: Ib6ddc1ceb306be9b3098d7b7c66a8ffabbd86481 Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com> Reviewed-by: Andrew Knight <andrew.knight@intopalo.com> Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
Diffstat (limited to 'qmake')
-rw-r--r--qmake/generators/win32/msvc_vcproj.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/qmake/generators/win32/msvc_vcproj.cpp b/qmake/generators/win32/msvc_vcproj.cpp
index 8e08ab248e..9acfa6588b 100644
--- a/qmake/generators/win32/msvc_vcproj.cpp
+++ b/qmake/generators/win32/msvc_vcproj.cpp
@@ -655,6 +655,7 @@ void VcprojGenerator::writeSubDirs(QTextStream &t)
switch (which_dotnet_version(project->first("MSVC_VER").toLatin1())) {
case NET2015:
t << _slnHeader140;
+ break;
case NET2013:
t << _slnHeader120;
break;