CMake: Add a missing break

Detected by GCC7

Change-Id: Ia9a76df63c28d4f4ebf3e20f70ab39224115b5a1
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
Orgad Shaneh
2017-06-02 16:12:53 +03:00
committed by Orgad Shaneh
parent 59a5c0c232
commit 70ff6eb2cc

View File

@@ -124,8 +124,10 @@ public:
name += tr(" (Default)");
return name;
}
case 1: return m_executable.toUserOutput();
case 1:
return m_executable.toUserOutput();
}
break;
case Qt::FontRole: {
QFont font;