From 7f9510b24e556ef75b4c0b387544bf551fbe07bc Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 30 Sep 2001 22:30:59 +0000 Subject: [PATCH] give (hopefully) more clear error message git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11758 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/window.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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; } -- 2.47.2