Removed compilation warnings (mostly mismatches between the format string
for debug/trace printfs and the actual parameters, e.g. int vs long, etc) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16795 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -2249,7 +2249,7 @@ LRESULT WXDLLEXPORT APIENTRY _EXPORT wxWndProc(HWND hWnd, UINT message, WPARAM w
|
||||
// trace all messages - useful for the debugging
|
||||
#ifdef __WXDEBUG__
|
||||
wxLogTrace(wxTraceMessages, wxT("Processing %s(wParam=%8lx, lParam=%8lx)"),
|
||||
wxGetMessageName(message), wParam, lParam);
|
||||
wxGetMessageName(message), (long) wParam, lParam);
|
||||
#endif // __WXDEBUG__
|
||||
|
||||
wxWindowMSW *wnd = wxFindWinFromHandle((WXHWND) hWnd);
|
||||
@@ -2852,7 +2852,7 @@ void wxAssociateWinWithHandle(HWND hWnd, wxWindowMSW *win)
|
||||
if ( oldWin && (oldWin != win) )
|
||||
{
|
||||
wxLogDebug(wxT("HWND %X already associated with another window (%s)"),
|
||||
hWnd, win->GetClassInfo()->GetClassName());
|
||||
(int) hWnd, win->GetClassInfo()->GetClassName());
|
||||
}
|
||||
else
|
||||
#endif // __WXDEBUG__
|
||||
|
Reference in New Issue
Block a user