Workaround to compile configureapp.cpp with MSVC2010 x64
authorjian liang <jianliang79@gmail.com>
Mon, 25 Jun 2012 15:18:37 +0000 (23:18 +0800)
committerQt by Nokia <qt-info@nokia.com>
Wed, 27 Jun 2012 01:55:25 +0000 (03:55 +0200)
Remove a non-ascii character from configureapp.cpp to let it to be
compiled successfully with MSVC2010 x64.

Change-Id: I0b016630be49e8731cc438abca4ef959124138be
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
tools/configure/configureapp.cpp

index 9757ade..f22519a 100644 (file)
@@ -350,7 +350,7 @@ Configure::~Configure()
 QString Configure::formatPath(const QString &path)
 {
     QString ret = QDir::cleanPath(path);
-    // This amount of quoting is deemed sufficient. ™
+    // This amount of quoting is deemed sufficient.
     if (ret.contains(QLatin1Char(' '))) {
         ret.prepend(QLatin1Char('"'));
         ret.append(QLatin1Char('"'));