]> git.saurik.com Git - wxWidgets.git/blobdiff - src/os2/accel.cpp
Added a bigger wxMMedia2 demonstration: wxMultimediaBoard: it is a sort
[wxWidgets.git] / src / os2 / accel.cpp
index 438c075e32c783c5162645b9917d25cc743ec2ed..7be1c6acd3a077728327bcfaee980278202a365e 100644 (file)
@@ -1,11 +1,11 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        accel.cpp
 // Purpose:     wxAcceleratorTable
-// Author:      AUTHOR
+// Author:      David Webster
 // Modified by:
-// Created:     ??/??/98
+// Created:     10/13/99
 // RCS-ID:      $Id$
-// Copyright:   (c) AUTHOR
+// Copyright:   (c) David Webster
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
@@ -23,9 +23,7 @@
 #include "wx/os2/private.h"
 
 
-#if !USE_SHARED_LIBRARIES
 IMPLEMENT_DYNAMIC_CLASS(wxAcceleratorTable, wxObject)
-#endif
 
 class WXDLLEXPORT wxAcceleratorRefData: public wxObjectRefData
 {
@@ -37,6 +35,7 @@ public:
     inline HACCEL GetHACCEL() const { return m_hAccel; }
 protected:
     HACCEL      m_hAccel;
+    bool        m_ok;
 };
 
 #define M_ACCELDATA ((wxAcceleratorRefData *)m_refData)
@@ -80,6 +79,8 @@ wxAcceleratorTable::wxAcceleratorTable(const wxString& resource)
 */
 }
 
+extern int wxCharCodeWXToOS2(int id, bool *isVirtual);
+
 // Create from an array
 wxAcceleratorTable::wxAcceleratorTable(int n, wxAcceleratorEntry entries[])
 {