diff --git a/interface/wx/event.h b/interface/wx/event.h index d9bfe9b417..9dde8ccf63 100644 --- a/interface/wx/event.h +++ b/interface/wx/event.h @@ -710,7 +710,13 @@ public: Notice that Bind() provides a more flexible and safer way to do the same thing as Connect(), please use it in any new code -- while Connect() is not formally deprecated due to its existing widespread - usage, it has no advantages compared to Bind(). + usage, it has no advantages compared to Bind() and has a number of + drawbacks, including: + + - Less compile-time safety. + - Unintuitive parameter order. + - Limited to use with the methods of the classes publicly inheriting + from wxEvtHandler. This is an alternative to the use of static event tables. It is more flexible as it allows connecting events generated by some object to an