]> git.saurik.com Git - wxWidgets.git/blobdiff - src/os2/frame.cpp
fix ANI loading; check for errors when calling Read()
[wxWidgets.git] / src / os2 / frame.cpp
index 567fa20eb632c7d04b1456ea90f1410f0b0de4bf..98dbc1ba94061782d4653aeac5c66f5cdab4bac2 100644 (file)
@@ -1379,20 +1379,3 @@ wxWindow* wxFrame::GetClient()
     return wxFindWinFromHandle((WXHWND)::WinWindowFromID(m_hFrame, FID_CLIENT));
 }
 
-void wxFrame::SendSizeEvent()
-{
-    if (!m_bIconized)
-    {
-        RECTL                       vRect = wxGetWindowRect(GetHwnd());
-
-        ::WinPostMsg( GetHwnd()
-                     ,WM_SIZE
-                     ,MPFROM2SHORT( vRect.xRight - vRect.xLeft
-                                   ,vRect.xRight - vRect.xLeft
-                                  )
-                     ,MPFROM2SHORT( vRect.yTop - vRect.yBottom
-                                   ,vRect.yTop - vRect.yBottom
-                                  )
-                    );
-    }
-}