From 4c29c61a7500a55e0a9b12c17a4c55d24d4828f2 Mon Sep 17 00:00:00 2001
From: Alessandro Portale <alessandro.portale@nokia.com>
Date: Thu, 12 Aug 2010 21:07:25 +0200
Subject: [PATCH] MSVC compile fix

---
 .../qt4projectmanager/qt-maemo/maemodeviceconfigurations.cpp    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/plugins/qt4projectmanager/qt-maemo/maemodeviceconfigurations.cpp b/src/plugins/qt4projectmanager/qt-maemo/maemodeviceconfigurations.cpp
index 54853ebe4b8..24857bd115a 100644
--- a/src/plugins/qt4projectmanager/qt-maemo/maemodeviceconfigurations.cpp
+++ b/src/plugins/qt4projectmanager/qt-maemo/maemodeviceconfigurations.cpp
@@ -156,7 +156,7 @@ private:
         int port = 0;
         do {
             const char next = nextChar();
-            if (!std::isdigit(next))
+            if (!isdigit(next))
                 break;
             port = 10*port + next - '0';
             ++m_pos;
-- 
GitLab