Removed wxLogNull's used to supress errors coming from

wxCheckWindowWndProc.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37137 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-01-25 20:28:12 +00:00
parent f57f984cc0
commit f36b056bd0
2 changed files with 2 additions and 9 deletions

View File

@@ -1622,11 +1622,7 @@ wxAMMediaBackend::~wxAMMediaBackend()
if (m_pAX)
{
{
wxLogNull noLog;
m_pAX->DissociateHandle();
}
m_pAX->DissociateHandle();
delete m_pAX;
m_pAM->Release();

View File

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