git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55557 
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
 #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
 
     }
 }
 
-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