X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/14f355c2b5c71fc7c3d680aea366582d2ac60f7b..44fd6f721ad375033b2a2b64ac5f703ac70cb8f0:/src/common/list.cpp?ds=inline

diff --git a/src/common/list.cpp b/src/common/list.cpp
index 26ace46fb5..e51c364021 100644
--- a/src/common/list.cpp
+++ b/src/common/list.cpp
@@ -345,7 +345,7 @@ wxNodeBase *wxListBase::Find(const wxListKey& key) const
     return (wxNodeBase *)NULL;
 }
 
-wxNodeBase *wxListBase::Find(void *object) const
+wxNodeBase *wxListBase::Find(const void *object) const
 {
     for ( wxNodeBase *current = GetFirst(); current; current = current->GetNext() )
     {