mailr11984 - /branches/bieri_gui/gui_bieri/about.py


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

Header


Content

Posted by edward on December 28, 2010 - 10:26:
Author: bugman
Date: Tue Dec 28 10:26:14 2010
New Revision: 11984

URL: http://svn.gna.org/viewcvs/relax?rev=11984&view=rev
Log:
Explicit keyword arguments are now used in the about window classes.


Modified:
    branches/bieri_gui/gui_bieri/about.py

Modified: branches/bieri_gui/gui_bieri/about.py
URL: 
http://svn.gna.org/viewcvs/relax/branches/bieri_gui/gui_bieri/about.py?rev=11984&r1=11983&r2=11984&view=diff
==============================================================================
--- branches/bieri_gui/gui_bieri/about.py (original)
+++ branches/bieri_gui/gui_bieri/about.py Tue Dec 28 10:26:14 2010
@@ -34,7 +34,6 @@
 from paths import IMAGE_PATH
 
 
-
 class About_base(wx.Frame):
     """The about dialog base class."""
 
@@ -51,14 +50,14 @@
     # Spacer size (px).
     border = 0
 
-    def __init__(self, *args, **kwds):
+    def __init__(self, parent=None, id=-1, title=''):
         """Build the dialog."""
 
         # Change the dialog style.
-        kwds["style"] = wx.BORDER_NONE | wx.STAY_ON_TOP
+        style = wx.BORDER_NONE | wx.STAY_ON_TOP
 
         # Execute the base class __init__() method.
-        super(About_base, self).__init__(*args, **kwds)
+        super(About_base, self).__init__(parent=parent, id=id, title=title, 
style=style)
 
         # Create a scrolled window.
         self.window = wx.ScrolledWindow(self, -1)
@@ -278,7 +277,7 @@
     # Spacer size (px).
     border = 10
 
-    def __init__(self, *args, **kwds):
+    def __init__(self, parent=None, id=-1, title=''):
         """Build the dialog."""
 
         # Initialise the program information container.
@@ -292,7 +291,7 @@
         self.link_pos_y = [0, 0]
 
         # Execute the base class __init__() method.
-        super(About_relax, self).__init__(*args, **kwds)
+        super(About_relax, self).__init__(parent=parent, id=id, title=title)
 
 
     def build_widget(self):




Related Messages


Powered by MHonArc, Updated Tue Dec 28 10:40:02 2010