git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55557 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2008-09-11 16:32:03 +00:00
parent f71d8b3de0
commit e0e2cbbe94
2 changed files with 3 additions and 3 deletions

View File

@@ -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

View File

@@ -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