]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/carbon/frame.cpp
reverted the change of r56246 and keep the old behaviour of MB2WC/WC2MB; document...
[wxWidgets.git] / src / osx / carbon / frame.cpp
index 17df9bcf0d3272bd557b9e9c792b0015e7b93d25..5c2ada2de0d1bd1ea36c206a9f711092ff12d7b5 100644 (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