]> git.saurik.com Git - wxWidgets.git/commitdiff
use class name instead of generic message in event related assert
authorGilles Depeyrot <gilles_depeyrot@mac.com>
Sun, 18 Nov 2001 22:28:11 +0000 (22:28 +0000)
committerGilles Depeyrot <gilles_depeyrot@mac.com>
Sun, 18 Nov 2001 22:28:11 +0000 (22:28 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12480 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/event.cpp

index 6bdc802f27a571ce2c9c9662befee82f78cc398b..450a0faae97ccd88ce90db63de4a40cb6020f48c 100644 (file)
@@ -711,8 +711,8 @@ bool wxEvtHandler::ProcessEvent(wxEvent& event)
 {
 #if wxUSE_GUI
 
-    // We have to use the actual window or processing events from wxWindowNative
-    // destructor won't work (we don't see the wxWindow class)
+    // We have to use the actual window or processing events from
+    // wxWindowNative destructor won't work (we don't see the wxWindow class)
 #ifdef __WXDEBUG__
     // check that our flag corresponds to reality
     wxClassInfo* info = NULL;
@@ -735,7 +735,7 @@ bool wxEvtHandler::ProcessEvent(wxEvent& event)
 #endif
 
     wxASSERT_MSG( m_isWindow == IsKindOf(info),
-                  _T("this should [not] be a window but it is [not]") );
+                  wxString(GetClassInfo()->GetClassName()) + _T(" should [not] be a window but it is [not]") );
 #endif
 
 #endif // wxUSE_GUI