From: Vadim Zeitlin Date: Fri, 1 Jul 2005 21:42:26 +0000 (+0000) Subject: fixed wrong argument to wxString::Format(); include wx/thread.h X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/7f53010b0b020e509d2f371f54873970d6aad22d fixed wrong argument to wxString::Format(); include wx/thread.h git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34797 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/mediactrl.cpp b/src/msw/mediactrl.cpp index 5e096cdf62..c554ccb154 100644 --- a/src/msw/mediactrl.cpp +++ b/src/msw/mediactrl.cpp @@ -39,6 +39,7 @@ #if wxUSE_MEDIACTRL #include "wx/dcclient.h" +#include "wx/thread.h" //--------------------------------------------------------------------------- // Externals (somewhere in src/msw/app.cpp) @@ -961,7 +962,7 @@ wxString wxAMMediaBackend::GetErrorString(HRESULT hrdsv) wxT("(numeric %i)\n") wxT("occured at line %i in ") wxT("mediactrl.cpp"), - (int)hrdsv, szError, __LINE__); + szError, (int)hrdsv, szError, __LINE__); } else {