From: Vadim Zeitlin Date: Sun, 30 Sep 2001 22:30:59 +0000 (+0000) Subject: give (hopefully) more clear error message X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/7f9510b24e556ef75b4c0b387544bf551fbe07bc?ds=sidebyside give (hopefully) more clear error message git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11758 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/window.cpp b/src/msw/window.cpp index 5f1c764941..aa47fded24 100644 --- a/src/msw/window.cpp +++ b/src/msw/window.cpp @@ -2868,8 +2868,7 @@ bool wxWindowMSW::MSWCreate(int id, if ( !m_hWnd ) { - wxLogError(_("Can't create window of class %s!\nPossible Windows 3.x compatibility problem?"), - wclass); + wxLogSysError(_("Can't create window of class %s"), wclass); return FALSE; }