diff --git a/src/plugins/debugger/cdb/cdbbreakpoint.cpp b/src/plugins/debugger/cdb/cdbbreakpoint.cpp
index 032222a3cb961c90508673d2759e4620654b6dbc..be605645ab185e818509bb62856b643662c23bc4 100644
--- a/src/plugins/debugger/cdb/cdbbreakpoint.cpp
+++ b/src/plugins/debugger/cdb/cdbbreakpoint.cpp
@@ -97,7 +97,7 @@ bool synchronizeBreakPoints(CIDebugControl* debugControl,
                 updateMarkers = true;
                 nbd->pending = false;
                 nbd->bpNumber = QByteArray::number(uint(id));
-                nbd->bpAddress = QLatin1String("0x") + QString::number(address, 16);
+                nbd->bpAddress = "0x" + QByteArray::number(address, 16);
                 // Take over rest as is
                 nbd->bpCondition = nbd->condition;
                 nbd->bpIgnoreCount = nbd->ignoreCount;
diff --git a/src/shared/proparser/profileevaluator.cpp b/src/shared/proparser/profileevaluator.cpp
index cd6cc984a1fa6d79ac0d0c5c9d03133c386c3df9..caeb71b19011ed616f5896f8aaa14162b1320d05 100644
--- a/src/shared/proparser/profileevaluator.cpp
+++ b/src/shared/proparser/profileevaluator.cpp
@@ -2735,12 +2735,13 @@ QStringList ProFileEvaluator::Private::values(const QString &variableName,
             break;
 #if defined(Q_OS_WIN32)
         case V_QMAKE_HOST_os: ret = QLatin1String("Windows"); break;
-        case V_QMAKE_HOST_name:
+        case V_QMAKE_HOST_name: {
             DWORD name_length = 1024;
             TCHAR name[1024];
             if (GetComputerName(name, &name_length))
                 ret = QString::fromUtf16((ushort*)name, name_length);
             break;
+        }
         case V_QMAKE_HOST_version:
             ret = QString::number(QSysInfo::WindowsVersion);
             break;