]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed stupid bug in display mode error reporting
authorVáclav Slavík <vslavik@fastmail.fm>
Sun, 4 Nov 2001 23:33:19 +0000 (23:33 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Sun, 4 Nov 2001 23:33:19 +0000 (23:33 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12322 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/appcmn.cpp

index 37b04e0e86b3a7cc4a113129ef435f28c134703e..af586d4f31787f2493d8ef98a9eaf033afd46849 100644 (file)
@@ -279,12 +279,13 @@ bool wxAppBase::OnCmdLineParsed(wxCmdLineParser& parser)
         unsigned w, h, bpp;
         if ( wxSscanf(modeDesc.c_str(), _T("%ux%u-%u"), &w, &h, &bpp) != 3 )
         {
-            wxLogError(_("Unsupported display mode '%s'."), themeName.c_str());
+            wxLogError(_("Invalid display mode specification '%s'."), modeDesc.c_str());
 
             return FALSE;
         }
 
-        SetDisplayMode(wxDisplayModeInfo(wxSize(w, h), bpp));
+        if ( !SetDisplayMode(wxDisplayModeInfo(wxSize(w, h), bpp)) )
+            return FALSE;
     }
 #endif