]> git.saurik.com Git - wxWidgets.git/commitdiff
Removed wxLogNull's used to supress errors coming from
authorRobin Dunn <robin@alldunn.com>
Wed, 25 Jan 2006 20:28:12 +0000 (20:28 +0000)
committerRobin Dunn <robin@alldunn.com>
Wed, 25 Jan 2006 20:28:12 +0000 (20:28 +0000)
wxCheckWindowWndProc.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37137 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/mediactrl.cpp
src/msw/ole/activex.cpp

index bfad1da456ae5f0a74560b020b07eec9b0985172..3399f268f962c1bb1932e8ed0cf51a11c48ff826 100644 (file)
@@ -1622,11 +1622,7 @@ wxAMMediaBackend::~wxAMMediaBackend()
 
     if (m_pAX)
     {
-        {
-            wxLogNull noLog;
-            m_pAX->DissociateHandle();
-        }
-
+        m_pAX->DissociateHandle();            
         delete m_pAX;
         m_pAM->Release();
 
index fd2d68232ba7c168c0679ea3bb586165034bc282..e6a9fc29023a5426a2ebccbbf7db9f0c1d371971 100644 (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;