]> git.saurik.com Git - wxWidgets.git/commitdiff
Ensure there is a g.testWin before trying to use it
authorRobin Dunn <robin@alldunn.com>
Fri, 27 Apr 2007 22:13:31 +0000 (22:13 +0000)
committerRobin Dunn <robin@alldunn.com>
Fri, 27 Apr 2007 22:13:31 +0000 (22:13 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45701 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/wx/tools/XRCed/xrced.py

index 064ad0936b73207f3cc35c93c8da0e1d5e424fd9..67966b9c2865b19d15909224aa79656be8485c21 100644 (file)
@@ -687,7 +687,7 @@ class Frame(wx.Frame):
         if index == 0: return # No previous sibling found
 
         # Remove highlight, update testWin
-        if g.testWin.highLight:
+        if g.testWin and g.testWin.highLight:
             g.testWin.highLight.Remove()
             tree.needUpdate = True
 
@@ -723,7 +723,7 @@ class Frame(wx.Frame):
         if not next: return
 
         # Remove highlight, update testWin
-        if g.testWin.highLight:
+        if g.testWin and g.testWin.highLight:
             g.testWin.highLight.Remove()
             tree.needUpdate = True
 
@@ -763,7 +763,7 @@ class Frame(wx.Frame):
         if not self.ItemsAreCompatible(tree.GetPyData(pparent).treeObject(), tree.GetPyData(selected).treeObject()): return
 
         # Remove highlight, update testWin
-        if g.testWin.highLight:
+        if g.testWin and g.testWin.highLight:
             g.testWin.highLight.Remove()
             tree.needUpdate = True
 
@@ -830,7 +830,7 @@ class Frame(wx.Frame):
         if not self.ItemsAreCompatible(parent, tree.GetPyData(selected).treeObject()): return
 
         # Remove highlight, update testWin
-        if g.testWin.highLight:
+        if g.testWin and g.testWin.highLight:
             g.testWin.highLight.Remove()
             tree.needUpdate = True
 
@@ -1358,7 +1358,7 @@ Homepage: http://xrced.sourceforge.net\
                     tree.HighLight(tree.pendingHighLight)
                 except:
                     # Remove highlight if any problem
-                    if g.testWin.highLight:
+                    if g.testWin and g.testWin.highLight:
                         g.testWin.highLight.Remove()
                     tree.pendingHighLight = None
                     raise