From: Robin Dunn Date: Tue, 29 Jun 2004 02:01:11 +0000 (+0000) Subject: A little better failure message X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/90af251453884b7dab2a353280b9061a3ac02b5e A little better failure message git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28073 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/control.cpp b/src/msw/control.cpp index 65042f462e..7b4bdfa542 100644 --- a/src/msw/control.cpp +++ b/src/msw/control.cpp @@ -150,7 +150,7 @@ bool wxControl::MSWCreateControl(const wxChar *classname, if ( !m_hWnd ) { wxLogDebug(wxT("Failed to create a control of class '%s'"), classname); - wxFAIL_MSG(_T("something is very wrong")); + wxFAIL_MSG(_T("something is very wrong, CreateWindowEx failed")); return FALSE; }