fixes #9951
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55557 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -109,7 +109,7 @@ protected:
|
||||
#endif
|
||||
|
||||
// osx specific event handling common for all osx-ports
|
||||
virtual void HandleResized( long timestamp );
|
||||
virtual void HandleResized( double timestampsec );
|
||||
|
||||
protected:
|
||||
// the last focused child: we restore focus to it on activation
|
||||
|
@@ -215,14 +215,14 @@ void wxFrame::OnActivate(wxActivateEvent& event)
|
||||
}
|
||||
}
|
||||
|
||||
void wxFrame::HandleResized( long timestamp )
|
||||
void wxFrame::HandleResized( double timestampsec )
|
||||
{
|
||||
// according to the other ports we handle this within the OS level
|
||||
// resize event, not within a wxSizeEvent
|
||||
|
||||
PositionBars();
|
||||
|
||||
wxNonOwnedWindow::HandleResized( timestamp );
|
||||
wxNonOwnedWindow::HandleResized( timestampsec );
|
||||
}
|
||||
|
||||
#if wxUSE_MENUS
|
||||
|
Reference in New Issue
Block a user