From: Robin Dunn Date: Sun, 25 Apr 2004 00:38:55 +0000 (+0000) Subject: Use the right classname X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/07ec2506d5b03b08e32208c0f86b1a2b71ff3ec9 Use the right classname git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26941 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/wx/lib/grids.py b/wxPython/wx/lib/grids.py index cbd82f4316..68c8b03226 100644 --- a/wxPython/wx/lib/grids.py +++ b/wxPython/wx/lib/grids.py @@ -199,7 +199,7 @@ class PyGridSizer(wx.PySizer): -class PyFlexGridSizer(wxGridSizer): +class PyFlexGridSizer(PyGridSizer): def __init__(self, rows=0, cols=0, hgap=0, vgap=0): wxGridSizer.__init__(self, rows, cols, hgap, vgap) self.rowHeights = []