]> git.saurik.com Git - wxWidgets.git/commitdiff
fixes #9951
authorStefan Csomor <csomor@advancedconcepts.ch>
Thu, 11 Sep 2008 16:32:03 +0000 (16:32 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Thu, 11 Sep 2008 16:32:03 +0000 (16:32 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55557 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/osx/carbon/frame.h
src/osx/carbon/frame.cpp

index 8ed5ff19373e7acd557df517515f8eff5a8d73df..380fbf624e6db5cfc5c36288d529020196f75315 100644 (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
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