mailr14626 - /1.3/gui/user_functions/deselect.py


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

Header


Content

Posted by edward on September 13, 2011 - 15:04:
Author: bugman
Date: Tue Sep 13 15:04:25 2011
New Revision: 14626

URL: http://svn.gna.org/viewcvs/relax?rev=14626&view=rev
Log:
The deselect user function GUI pages no longer expect the uf page to be 
returned.


Modified:
    1.3/gui/user_functions/deselect.py

Modified: 1.3/gui/user_functions/deselect.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/gui/user_functions/deselect.py?rev=14626&r1=14625&r2=14626&view=diff
==============================================================================
--- 1.3/gui/user_functions/deselect.py (original)
+++ 1.3/gui/user_functions/deselect.py Tue Sep 13 15:04:25 2011
@@ -43,7 +43,7 @@
         """The deselect.all user function."""
 
         # Execute the wizard.
-        wizard, page = self.create_wizard(size_x=600, size_y=300, 
name='deselect.all', uf_page=All_page, apply_button=False)
+        wizard = self.create_wizard(size_x=600, size_y=300, 
name='deselect.all', uf_page=All_page, apply_button=False)
         wizard.run()
 
 
@@ -51,7 +51,7 @@
         """The deselect.read user function."""
 
         # Execute the wizard.
-        wizard, page = self.create_wizard(size_x=900, size_y=700, 
name='deselect.read', uf_page=Read_page)
+        wizard = self.create_wizard(size_x=900, size_y=700, 
name='deselect.read', uf_page=Read_page)
         wizard.run()
 
 
@@ -59,7 +59,7 @@
         """The deselect.reverse user function."""
 
         # Execute the wizard.
-        wizard, page = self.create_wizard(size_x=700, size_y=400, 
name='deselect.reverse', uf_page=Reverse_page, apply_button=False)
+        wizard = self.create_wizard(size_x=700, size_y=400, 
name='deselect.reverse', uf_page=Reverse_page, apply_button=False)
         wizard.run()
 
 
@@ -67,7 +67,7 @@
         """The deselect.spin user function."""
 
         # Execute the wizard.
-        wizard, page = self.create_wizard(size_x=700, size_y=500, 
name='deselect.spin', uf_page=Spin_page)
+        wizard = self.create_wizard(size_x=700, size_y=500, 
name='deselect.spin', uf_page=Spin_page)
         wizard.run()
 
 




Related Messages


Powered by MHonArc, Updated Tue Sep 13 17:20:02 2011