]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/hash.h
moved MGL initialization to earlier stage (crashes otherwise...) and implemented...
[wxWidgets.git] / include / wx / hash.h
index 7ac1e05a7a3aeb3d17ab4eac6ebba8091f9aeaab..873536e13985dbea060c22f460ff5cf6c46dd018 100644 (file)
@@ -158,7 +158,7 @@ public:
     ~wxHashTable();
 
     // copy ctor and assignment operator
-    wxHashTable(const wxHashTable& table) { DoCopy(table); }
+    wxHashTable(const wxHashTable& table) : wxObject() { DoCopy(table); }
     wxHashTable& operator=(const wxHashTable& table)
         { Clear(); DoCopy(table); return *this; }