typos in error messages corrected

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1931 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 1999-03-14 22:31:35 +00:00
parent fb9e1bc282
commit 68ad65f856
2 changed files with 3 additions and 3 deletions

View File

@ -365,7 +365,7 @@ void wxLog::DoLog(wxLogLevel level, const char *szString)
void wxLog::DoLogString(const char *WXUNUSED(szString))
{
wxFAIL_MSG(_("DoLogString must be overrided if it's called."));
wxFAIL_MSG("DoLogString must be overriden if it's called.");
}
void wxLog::Flush()

View File

@ -138,7 +138,7 @@ bool wxDialog::Create(wxWindow *parent, wxWindowID id,
if ( !hwnd )
{
wxLogError(_("Failed to created dialog."));
wxLogError(_("Failed to create dialog."));
return FALSE;
}
@ -620,4 +620,4 @@ void wxDialog::OnSysColourChanged(wxSysColourChangedEvent& event)
SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE));
Refresh();
#endif
}
}