suppress VC++ /Wp64 warnings
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52967 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1014,7 +1014,7 @@ bool wxAuiManager::AddPane(wxWindow* window, const wxAuiPaneInfo& pane_info)
|
|||||||
if (pinfo.name.empty() || already_exists)
|
if (pinfo.name.empty() || already_exists)
|
||||||
{
|
{
|
||||||
pinfo.name.Printf(wxT("%08lx%08x%08x%08lx"),
|
pinfo.name.Printf(wxT("%08lx%08x%08x%08lx"),
|
||||||
((unsigned long)pinfo.window) & 0xffffffff,
|
wxPtrToUInt(pinfo.window) & 0xffffffff,
|
||||||
(unsigned int)time(NULL),
|
(unsigned int)time(NULL),
|
||||||
#ifdef __WXWINCE__
|
#ifdef __WXWINCE__
|
||||||
(unsigned int)GetTickCount(),
|
(unsigned int)GetTickCount(),
|
||||||
|
@@ -1154,7 +1154,7 @@ bool wxQTMediaBackend::ShowPlayerControls(wxMediaCtrlPlayerControls flags)
|
|||||||
// | (1<< 4) /*mcFlagDontInvalidate*/ // if we take care of repainting ourselves
|
// | (1<< 4) /*mcFlagDontInvalidate*/ // if we take care of repainting ourselves
|
||||||
;
|
;
|
||||||
|
|
||||||
m_lib.MCDoAction(m_pMC, 38/*mcActionSetFlags*/, (void*)mcFlags);
|
m_lib.MCDoAction(m_pMC, 38/*mcActionSetFlags*/, wxUIntToPtr(mcFlags));
|
||||||
|
|
||||||
// intercept the wndproc of our control window
|
// intercept the wndproc of our control window
|
||||||
wxSetWindowProc((HWND)m_ctrl->GetHWND(), wxQTMediaBackend::QTWndProc);
|
wxSetWindowProc((HWND)m_ctrl->GetHWND(), wxQTMediaBackend::QTWndProc);
|
||||||
|
Reference in New Issue
Block a user