// Author: Julian Smart
// Modified by:
// Created: 04/01/98
-// RCS-ID: $Id$
// Copyright: (c) Julian Smart
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
{
m_refData = new wxAcceleratorRefData;
- HACCEL hAccel = ::LoadAccelerators(wxGetInstance(), resource.wx_str());
+ HACCEL hAccel = ::LoadAccelerators(wxGetInstance(), resource.t_str());
M_ACCELDATA->m_hAccel = hAccel;
M_ACCELDATA->m_ok = hAccel != 0;
}
bool wxAcceleratorTable::Translate(wxWindow *window, WXMSG *wxmsg) const
{
MSG *msg = (MSG *)wxmsg;
- return Ok() && ::TranslateAccelerator(GetHwndOf(window), GetHaccel(), msg);
+ return IsOk() && ::TranslateAccelerator(GetHwndOf(window), GetHaccel(), msg);
}
#endif // wxUSE_ACCEL