Remove the busy-wait loops in wxAMMediaBackend::Play as they didn't

work right anyway...

Also silence some log messages when a failure is expected from
wxCheckWindowWndProc.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36910 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-01-17 04:20:56 +00:00
parent 05886ed3f2
commit f3ebbc0ac8
2 changed files with 12 additions and 29 deletions

View File

@@ -711,7 +711,10 @@ void wxActiveXContainer::CreateActiveX(REFIID iid, IUnknown* pUnk)
::SetActiveWindow(m_oleObjectHWND);
::ShowWindow(m_oleObjectHWND, SW_SHOW);
this->AssociateHandle(m_oleObjectHWND);
{
wxLogNull noLog;
this->AssociateHandle(m_oleObjectHWND);
}
this->Reparent(m_realparent);
wxWindow* pWnd = m_realparent;