X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/022a8a5af2763ae462ac56fe6d1d7bd6d4fe71c8..f4efd805a09f66a9b0213bd8d602f773289fadeb:/include/wx/ipcbase.h

diff --git a/include/wx/ipcbase.h b/include/wx/ipcbase.h
index 56de3c8d35..45c0f44553 100644
--- a/include/wx/ipcbase.h
+++ b/include/wx/ipcbase.h
@@ -129,7 +129,14 @@ public:
   // Callbacks to SERVER - override at will
   virtual bool OnExec(const wxString& WXUNUSED(topic),
                       const wxString& WXUNUSED(data))
-      { return false; }
+  {
+      wxFAIL_MSG( "This method shouldn't be called, if it is, it probably "
+                  "means that you didn't update your old code overriding "
+                  "OnExecute() to use the new parameter types (\"const void *\" "
+                  "instead of \"wxChar *\" and \"size_t\" instead of \"int\"), "
+                  "you must do it or your code wouldn't be executed at all!" );
+      return false;
+  }
 
   // deprecated function kept for backwards compatibility: usually you will
   // want to override OnExec() above instead which receives its data in a more