# HG changeset patch
# User William Roberts <williamr@symbian.org>
# Date 1279198856 -3600
# Node ID 708db231cf720b0f150f8261d02d2ab0b6366673
# Parent  923ff622b8b906f5a5c85b7db0e2ea80376ccb6e
In class QMake, change self._version to self._qtversion so that configure.py doesn't crash (Bug 3264)

diff -r 923ff622b8b9 -r 708db231cf72 configure.py
--- a/configure.py	Tue Jul 06 14:36:53 2010 +0300
+++ b/configure.py	Thu Jul 15 14:00:56 2010 +0100
@@ -423,7 +423,7 @@
         return self._qtdir
 
     def qtversion(self):
-        return self._version
+        return self._qtversion
 
     def _run_qmake(self):
         # write .pro
@@ -460,7 +460,7 @@
             if not self._platform:
                 self._platform = re.search("Project MESSAGE: platform:(\S+)", output).group(1)
             self._features = re.search("Project MESSAGE: features:(\S+)", output).group(1)
-            self._version = re.search("Project MESSAGE: qtversion:(\S+)", output).group(1)
+            self._qtversion = re.search("Project MESSAGE: qtversion:(\S+)", output).group(1)
             self._qtdir = re.search("Project MESSAGE: qtdir:(\S+)", output).group(1)
         except:
             self._error = "Unable to parse qmake output (%s)" % output.strip()