]> git.saurik.com Git - wxWidgets.git/blobdiff - build/bakefiles/wxwin.py
Add *wxTopLevelWindowGTK*RequestUserAttention*int*;
[wxWidgets.git] / build / bakefiles / wxwin.py
index 25858eb20a5073849b86c2426529159bc840cd3b..e607ed349e7b23ba4f87a1999aeef3e2936398b5 100644 (file)
@@ -109,11 +109,11 @@ def getVersion():
         major = minor = release = None
         for l in lines:
             if not l.startswith('#define'): continue
-            splitted = l.strip().split()
-            if splitted[0] != '#define': continue
-            if len(splitted) < 3: continue
-            name = splitted[1]
-            value = splitted[2]
+            splitline = l.strip().split()
+            if splitline[0] != '#define': continue
+            if len(splitline) < 3: continue
+            name = splitline[1]
+            value = splitline[2]
             if value == None: continue
             if name == 'wxMAJOR_VERSION': major = int(value)
             if name == 'wxMINOR_VERSION': minor = int(value)