From 68ad65f8569c6fef3a3fb906becaaf161c77fb85 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 14 Mar 1999 22:31:35 +0000 Subject: [PATCH] typos in error messages corrected git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1931 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/log.cpp | 2 +- src/msw/dialog.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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 +} -- 2.45.2