]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/os2/accel.h
compatibility fix: have wxListKey ctors from C strings so that passing string literal...
[wxWidgets.git] / include / wx / os2 / accel.h
index 0f842eeac24a158d02cfde7b0e4db668a20b8831..819c857ee25dba1838de7a696bb5f2f85e98c3ed 100644 (file)
@@ -38,20 +38,10 @@ public:
                        ,const wxAcceleratorEntry vaEntries[]
                       ); // Load from array
 
-    // Copy constructors
-    inline wxAcceleratorTable(const wxAcceleratorTable& rAccel) { Ref(rAccel); }
-    inline wxAcceleratorTable(const wxAcceleratorTable* pAccel) { if (pAccel) Ref(*pAccel); }
+    virtual ~wxAcceleratorTable();
 
-    ~wxAcceleratorTable();
-
-    inline wxAcceleratorTable& operator = (const wxAcceleratorTable& rAccel)
-    { if (*this == rAccel) return (*this); Ref(rAccel); return *this; };
-    inline bool operator == (const wxAcceleratorTable& rAccel)
-    { return m_refData == rAccel.m_refData; };
-    inline bool operator != (const wxAcceleratorTable& rAccel)
-    { return m_refData != rAccel.m_refData; };
-
-    bool Ok() const;
+    bool Ok() const { return IsOk(); }
+    bool IsOk() const;
     void SetHACCEL(WXHACCEL hAccel);
     WXHACCEL GetHACCEL(void) const;