From: Julian Smart Date: Fri, 15 Feb 2002 11:25:14 +0000 (+0000) Subject: Fixed typos X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/eb90fb3ee8cbfa859907e3561caa456924556acf Fixed typos git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14226 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/x11/app.cpp b/src/x11/app.cpp index 71650e7b23..21eff48925 100644 --- a/src/x11/app.cpp +++ b/src/x11/app.cpp @@ -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 {