Fixed typos

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14226 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart 2002-02-15 11:25:14 +00:00
parent 5ed738a766
commit eb90fb3ee8

View 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
{