]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/accel.cpp
make access for virtuals match base
[wxWidgets.git] / src / motif / accel.cpp
index e3d7e23be39256abf251e7416e7bd9484839df37..4f8cd0311c4c19146fd5eb30c3a0d0c8dbf84828 100644 (file)
@@ -25,10 +25,10 @@ IMPLEMENT_DYNAMIC_CLASS(wxAcceleratorTable, wxObject)
 
 class WXDLLEXPORT wxAcceleratorRefData: public wxObjectRefData
 {
-    friend class WXDLLEXPORT wxAcceleratorTable;
+    friend class wxAcceleratorTable;
 public:
     wxAcceleratorRefData();
-    ~wxAcceleratorRefData();
+    virtual ~wxAcceleratorRefData();
 
 public:
     int m_count;
@@ -80,7 +80,7 @@ wxAcceleratorTable::wxAcceleratorTable(int n, const wxAcceleratorEntry entries[]
 
 }
 
-bool wxAcceleratorTable::Ok() const
+bool wxAcceleratorTable::IsOk() const
 {
     return (m_refData != (wxAcceleratorRefData*) NULL);
 }