#else // Win16
wxAcceleratorTable::wxAcceleratorTable(int WXUNUSED(n), const wxAcceleratorEntry WXUNUSED(entries)[])
{
- wxFAIL_MSG("not implemented");
+ // No, we simply gracefully degrade; we don't expect the
+ // developer to pepper their code with #ifdefs just for this.
+ // wxFAIL_MSG("not implemented");
}
#endif // Win32/16
{
MSG *msg = (MSG *)wxmsg;
- return Ok() && ::TranslateAccelerator(GetHwndOf(window), GetHaccel(), msg); }
+ return Ok() && ::TranslateAccelerator(GetHwndOf(window), GetHaccel(), msg);
+}
+