]> git.saurik.com Git - wxWidgets.git/commitdiff
typos in error messages corrected
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 14 Mar 1999 22:31:35 +0000 (22:31 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 14 Mar 1999 22:31:35 +0000 (22:31 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1931 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/log.cpp
src/msw/dialog.cpp

index aa30e87e1a8a8dad5fffab7c612c6cc236540e3f..686cd757541e6a7abdd48db96adb2643a6884930 100644 (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()
index 6b335758d2d6df6eb17afc34a3804fea1ed1a650..d2f6a22272386de1aa88a3726161bb154c6fee2b 100644 (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
-}
\ No newline at end of file
+}