+void wxAcceleratorTable::SetHACCEL(WXHACCEL hAccel)
+{
+ if (!M_ACCELDATA)
+ m_refData = new wxAcceleratorRefData;
+
+ M_ACCELDATA->m_hAccel = (HACCEL) hAccel;
+}
+
+WXHACCEL wxAcceleratorTable::GetHACCEL() const
+{
+ if (!M_ACCELDATA)
+ return 0;
+ return (WXHACCEL) M_ACCELDATA->m_hAccel;
+}
+
+bool wxAcceleratorTable::Translate(wxWindow *window, WXMSG *wxmsg) const
+{
+ // TODO:
+/*
+ MSG *msg = (MSG *)wxmsg;
+
+ return Ok() && ::TranslateAccelerator(GetHwndOf(window), GetHaccel(), msg);
+*/
+ return FALSE;
+}
+