Fixed wxMSW arrow key bug, changed wxPoem window to a wxWindow
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1801 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -133,7 +133,7 @@ void wxMDIParentFrame::OnSize(wxSizeEvent& event)
|
||||
|
||||
void wxMDIParentFrame::GetClientSize(int *width, int *height) const
|
||||
{
|
||||
return wxWindow::GetClientSize(width. height);
|
||||
wxWindow::GetClientSize(width, height);
|
||||
}
|
||||
|
||||
void wxMDIParentFrame::OnActivate(wxActivateEvent& event)
|
||||
@@ -240,12 +240,12 @@ void wxMDIParentFrame::DoSetSize(int x, int y,
|
||||
int width, int height,
|
||||
int sizeFlags)
|
||||
{
|
||||
return wxWindow::DoSetSize(x, y, width, height, sizeFlags);
|
||||
wxWindow::DoSetSize(x, y, width, height, sizeFlags);
|
||||
}
|
||||
|
||||
void wxMDIParentFrame::DoSetClientSize(int width, int height)
|
||||
{
|
||||
return wxWindow::DoSetClientSize(width, height);
|
||||
wxWindow::DoSetClientSize(width, height);
|
||||
}
|
||||
|
||||
// Responds to colour changes, and passes event on to children.
|
||||
|
Reference in New Issue
Block a user