]> git.saurik.com Git - wxWidgets.git/commitdiff
Remove debugging wxLogMessage from wxMediaCtrl::Create().
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 9 Sep 2010 20:33:41 +0000 (20:33 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 9 Sep 2010 20:33:41 +0000 (20:33 +0000)
This was added apparently by mistake in r45478 and resulted in showing the
backend being used by the control in a message box whenever it was created
ever since.

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

src/common/mediactrlcmn.cpp

index a1273c75f551d7a5d6ab38d4976c1676d953f76a..c1cf31c007ddd507a0bfbbe1abf74407c0131a83 100644 (file)
@@ -123,7 +123,6 @@ bool wxMediaCtrl::Create(wxWindow* parent, wxWindowID id,
 
         while((classInfo = NextBackend(&it)) != NULL)
         {
-            wxLogMessage( classInfo->GetClassName() );
             if(!DoCreate(classInfo, parent, id,
                          pos, size, style, validator, name))
                 continue;