]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/list.h
added missing WXDLLIMPEXP_CORE
[wxWidgets.git] / include / wx / list.h
index a30e5b93c41c86ca7a56663b2cfa5d289fd036d7..79f40cd077fe22f8d7dd4b199825e780e759fc1a 100644 (file)
@@ -390,6 +390,10 @@ public:
         { m_key.integer = i; }
     wxListKey(const wxString& s) : m_keyType(wxKEY_STRING)
         { m_key.string = new wxString(s); }
+    wxListKey(const char *s) : m_keyType(wxKEY_STRING)
+        { m_key.string = new wxString(s); }
+    wxListKey(const wchar_t *s) : m_keyType(wxKEY_STRING)
+        { m_key.string = new wxString(s); }
 
     // accessors
     wxKeyType GetKeyType() const { return m_keyType; }