X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6aa33060cd9132116fa3431b4889342e2f655853..e4940febd0aa35a8b70fe3244beab9604c1dd3d7:/include/wx/hash.h?ds=inline diff --git a/include/wx/hash.h b/include/wx/hash.h index 194302ae7a..337eb80371 100644 --- a/include/wx/hash.h +++ b/include/wx/hash.h @@ -348,8 +348,6 @@ public: const wxHashTable& operator=( const wxHashTable& ); - void Destroy() { Clear(); } - // key and value are the same void Put(long value, wxObject *object) { DoPut( value, value, object ); } @@ -518,7 +516,6 @@ private: \ virtual ~hashclass() { Destroy(); } \ \ - void Destroy() { Clear(); } \ void Put(long key, eltype *data) { DoPut(key, key, (void*)data); } \ void Put(long hash, long key, eltype *data) \ { DoPut(key, hash, (void*)data); } \