From: Vadim Zeitlin Date: Sun, 14 Mar 1999 22:31:35 +0000 (+0000) Subject: typos in error messages corrected X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/68ad65f8569c6fef3a3fb906becaaf161c77fb85 typos in error messages corrected git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1931 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/log.cpp b/src/common/log.cpp index aa30e87e1a..686cd75754 100644 --- a/src/common/log.cpp +++ b/src/common/log.cpp @@ -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() diff --git a/src/msw/dialog.cpp b/src/msw/dialog.cpp index 6b335758d2..d2f6a22272 100644 --- a/src/msw/dialog.cpp +++ b/src/msw/dialog.cpp @@ -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 -} \ No newline at end of file +}