Split this out from other changes to keep things sane..
wxDeprecated KeyCode. wxDeprecated old wxList compat methods. Replaced a large number of them in the gtk build already, but there are still plenty more so feel free to help nuke them as you find them. s/^I/ / and s/TRUE/true/ etc. a couple of these too. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18707 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -617,9 +617,9 @@ void wxSashWindow::SizeWindows()
|
||||
int cw, ch;
|
||||
GetClientSize(&cw, &ch);
|
||||
|
||||
if (GetChildren().Number() == 1)
|
||||
if (GetChildren().GetCount() == 1)
|
||||
{
|
||||
wxWindow* child = (wxWindow*) (GetChildren().First()->Data());
|
||||
wxWindow* child = GetChildren().GetFirst()->GetData();
|
||||
|
||||
int x = 0;
|
||||
int y = 0;
|
||||
@@ -658,7 +658,7 @@ void wxSashWindow::SizeWindows()
|
||||
|
||||
child->SetSize(x, y, width, height);
|
||||
}
|
||||
else if (GetChildren().Number() > 1)
|
||||
else if (GetChildren().GetCount() > 1)
|
||||
{
|
||||
// Perhaps multiple children are themselves sash windows.
|
||||
// TODO: this doesn't really work because the subwindows sizes/positions
|
||||
|
Reference in New Issue
Block a user