[Greater-commits] r3702 - in branches/3.0.0-all-models/sciparam/SciParam: . UI

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Tue Jul 26 14:47:06 CEST 2011


Author: aheinecke
Date: 2011-07-26 14:47:05 +0200 (Tue, 26 Jul 2011)
New Revision: 3702

Modified:
   branches/3.0.0-all-models/sciparam/SciParam/
   branches/3.0.0-all-models/sciparam/SciParam/UI/notebook.py
Log:
Merged revisions 340 via svnmerge from 
svn+ssh://wald.intevation.org/greater/trunk/GREAT-ER/SciParam

........
  r340 | aheinecke | 2011-06-30 15:26:32 +0200 (Thu, 30 Jun 2011) | 2 lines
  
  Correct sizer usage in sciparam to boxsizer
........



Property changes on: branches/3.0.0-all-models/sciparam/SciParam
___________________________________________________________________
Name: svnmerge-integrated
   - /trunk/GREAT-ER/SciParam:1-216
   + /trunk/GREAT-ER/SciParam:1-216,340

Modified: branches/3.0.0-all-models/sciparam/SciParam/UI/notebook.py
===================================================================
--- branches/3.0.0-all-models/sciparam/SciParam/UI/notebook.py	2011-07-26 12:41:02 UTC (rev 3701)
+++ branches/3.0.0-all-models/sciparam/SciParam/UI/notebook.py	2011-07-26 12:47:05 UTC (rev 3702)
@@ -60,7 +60,8 @@
 
     def __init__(self, parent, id, parameter):
         wxNotebook.__init__(self, parent, id, style=wxNB_MULTILINE)
-        self.sizer = wxNotebookSizer(self)
+        self.sizer = wxBoxSizer()
+        self.sizer.Add(self)
         self.pages = []
         self.parent = parent
 



More information about the Greater-commits mailing list