changeset 46 | 2b43a7f38c34 |
parent 45 | 43b2279b06e1 |
child 62 | 2f61931520c9 |
--- a/tuikit/layout.py Fri Jan 04 00:13:59 2013 +0100 +++ b/tuikit/layout.py Sat Jan 05 00:37:11 2013 +0100 @@ -40,7 +40,7 @@ class LinearLayout(Layout): def __init__(self, homogeneous=False, spacing=0): - super().__init__() + Layout.__init__(self) self.homogeneous = homogeneous self.spacing = spacing @@ -109,7 +109,7 @@ class GridLayout(Layout): def __init__(self, numcols=2): - super().__init__() + Layout.__init__(self) self.numcols = numcols