- fix some types in printf format strings
This commit is contained in:
parent
de67199921
commit
d4bf3598f0
@ -1,5 +1,5 @@
|
||||
/////////////////////////////////////////////////////////////////
|
||||
// $Id: wx.cc,v 1.25 2002-09-20 21:25:08 bdenney Exp $
|
||||
// $Id: wx.cc,v 1.26 2002-09-22 02:44:31 bdenney Exp $
|
||||
/////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// wxWindows VGA display for Bochs. wx.cc implements a custom
|
||||
@ -435,7 +435,7 @@ Boolean
|
||||
MyPanel::fillBxKeyEvent_GTK (wxKeyEvent& wxev, BxKeyEvent& bxev, Boolean release)
|
||||
{
|
||||
#if defined (wxHAS_RAW_KEY_CODES) && defined(__WXGTK__)
|
||||
IFDBG_KEY(wxLogDebug ("fillBxKeyEvent_GTK. key code %d, raw codes %d %d", wxev.m_keyCode, wxev.m_rawCode, wxev.m_rawFlags));
|
||||
IFDBG_KEY(wxLogDebug ("fillBxKeyEvent_GTK. key code %ld, raw codes %d %d", wxev.m_keyCode, wxev.m_rawCode, wxev.m_rawFlags));
|
||||
// GTK has only 16bit key codes
|
||||
Bit16u keysym = (Bit32u) wxev.m_rawCode;
|
||||
Bit32u bx_key = 0;
|
||||
@ -589,7 +589,7 @@ MyPanel::fillBxKeyEvent (wxKeyEvent& wxev, BxKeyEvent& bxev, Boolean release)
|
||||
|
||||
// otherwise fall back to using portable WXK_* keycodes. Not all keys
|
||||
// can be mapped correctly using WXK_* codes but it should be usable.
|
||||
IFDBG_KEY (wxLogDebug ("fillBxKeyEvent. key code %d", wxev.m_keyCode));
|
||||
IFDBG_KEY (wxLogDebug ("fillBxKeyEvent. key code %ld", wxev.m_keyCode));
|
||||
Bit32u key = wxev.m_keyCode;
|
||||
Bit32u bx_key;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user