]> git.saurik.com Git - wxWidgets.git/commitdiff
Fixed typos
authorJulian Smart <julian@anthemion.co.uk>
Fri, 15 Feb 2002 11:25:14 +0000 (11:25 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Fri, 15 Feb 2002 11:25:14 +0000 (11:25 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14226 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/x11/app.cpp

index 71650e7b2313c789a2743aea5949f208b4731fad..21eff48925f3452d157496f40dc73e4dec2ec85a 100644 (file)
@@ -197,11 +197,11 @@ int wxEntryStart( int& argc, char *argv[] )
             if (i < (argc - 1))
             {
                 i ++;
-                windowGeometry = argv[i];
+                wxString windowGeometry = argv[i];
                 int w, h;
                 if (wxSscanf(windowGeometry.c_str(), _T("%dx%d"), &w, &h) != 2)
                 {
-                    wxLogError(_("Invalid geometry specification '%s'", windowGeometry.c_str());
+                    wxLogError(_("Invalid geometry specification '%s'"), windowGeometry.c_str());
                 }
                 else
                 {