mailr13223 - /branches/gui_testing/gui/wizard.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on June 24, 2011 - 17:18:
Author: bugman
Date: Fri Jun 24 17:18:31 2011
New Revision: 13223

URL: http://svn.gna.org/viewcvs/relax?rev=13223&view=rev
Log:
Typo fix for the allocation of wx IDs to the wizard buttons.


Modified:
    branches/gui_testing/gui/wizard.py

Modified: branches/gui_testing/gui/wizard.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/gui_testing/gui/wizard.py?rev=13223&r1=13222&r2=13223&view=diff
==============================================================================
--- branches/gui_testing/gui/wizard.py (original)
+++ branches/gui_testing/gui/wizard.py Fri Jun 24 17:18:31 2011
@@ -754,12 +754,12 @@
                                   'cancel': None})
 
             # Initialise a set of unique button IDs.
-            self._button_ids.append({'back': wx.NewID(),
-                                     'apply': wx.NewID(),
-                                     'next': wx.NewID(),
-                                     'ok': wx.NewID(),
-                                     'finish': wx.NewID(),
-                                     'cancel': wx.NewID()})
+            self._button_ids.append({'back': wx.NewId(),
+                                     'apply': wx.NewId(),
+                                     'next': wx.NewId(),
+                                     'ok': wx.NewId(),
+                                     'finish': wx.NewId(),
+                                     'cancel': wx.NewId()})
 
 
     def _build_buttons(self):




Related Messages


Powered by MHonArc, Updated Fri Jun 24 20:40:02 2011