]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/wx/lib/rcsizer.py
Reverted to old method names/signatures for wx.DC, updated lib and
[wxWidgets.git] / wxPython / wx / lib / rcsizer.py
index 14829fc3dea0659f2c88e59717b04e3e1d49c7ed..30a06ca0ef60601ca69758432a0e0b22dc749125 100644 (file)
@@ -113,8 +113,8 @@ class RowColSizer(wx.PySizer):
         assert row != -1, "Row must be specified"
         assert col != -1, "Column must be specified"
 
-        wx.PySizer.AddSpacer(self, (width, height), option, flag, border,
-                            userData=(row, col, row+rowspan, col+colspan))
+        wx.PySizer.Add(self, (width, height), option, flag, border,
+                       userData=(row, col, row+rowspan, col+colspan))
 
     #--------------------------------------------------
     def _add( self, size, dim ):