Typo correction patch [ 1208110 ] Lots of typo corrections

Olly Betts


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34436 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2005-05-31 09:20:43 +00:00
parent a6905d8b55
commit 3103e8a97e
155 changed files with 279 additions and 371 deletions

View File

@@ -2995,7 +2995,7 @@ static void TestVCardRead()
wxPrintf(_T("Full name from wxVCard API: %s\n"), value.c_str());
// now show how to deal with multiply occuring properties
// now show how to deal with multiply occurring properties
DumpVCardAddresses(vcard);
DumpVCardPhoneNumbers(vcard);

View File

@@ -79,7 +79,7 @@ extern wxApp *DatabaseDemoApp;
/*
* This function will return the exact string(s) from the database engine
* indicating all error conditions which have just occured during the
* indicating all error conditions which have just occurred during the
* last call to the database engine.
*
* This demo uses the returned string by displaying it in a wxMessageBox. The

View File

@@ -1369,7 +1369,12 @@ SettingsDialog::SettingsDialog(wxWindow* win)
{
SetExtraStyle(wxDIALOG_EX_CONTEXTHELP|wxWS_EX_VALIDATE_RECURSIVELY);
Create(win, -1, _("Preferences"), wxDefaultPosition, wxDefaultSize);
Create(win, -1, _("Preferences"), wxDefaultPosition, wxDefaultSize,
wxDEFAULT_DIALOG_STYLE
#ifndef __WXWINCE__
|wxRESIZE_BORDER
#endif
);
CreateButtons(wxOK|wxCANCEL|wxHELP);
wxBookCtrlBase* notebook = GetBookCtrl();

View File

@@ -272,7 +272,7 @@ void MyFrame::OnHangUp(wxCommandEvent& WXUNUSED(event))
{
if ( wxGetApp().GetDialer()->HangUp() )
{
wxLogStatus(this, wxT("Connection was succesfully terminated."));
wxLogStatus(this, wxT("Connection was successfully terminated."));
}
else
{

View File

@@ -1730,7 +1730,7 @@ void DnDShapeFrame::OnDrag(wxMouseEvent& event)
{
default:
case wxDragError:
wxLogError(wxT("An error occured during drag and drop operation"));
wxLogError(wxT("An error occurred during drag and drop operation"));
break;
case wxDragNone:

View File

@@ -669,7 +669,7 @@ void MyCanvas::DrawDefault(wxDC& dc)
// Added by JACS to demonstrate bizarre behaviour.
// With a size of 70, we get a missing red RHS,
// and the hight is too small, so we get yellow
// and the height is too small, so we get yellow
// showing. With a size of 40, it draws as expected:
// it just shows a white rectangle with red outline.
int totalWidth = 70;

View File

@@ -79,7 +79,7 @@ public:
// program startup
virtual bool OnInit();
// 2nd-level exception handling: we get all the exceptions occuring in any
// 2nd-level exception handling: we get all the exceptions occurring in any
// event handler here
virtual bool OnExceptionInMainLoop();

View File

@@ -82,7 +82,7 @@ nested item</LI>
<LI>
<UL>
<LI>
deeper nesting for check of mark allignment </LI>
deeper nesting for check of mark alignment </LI>
<LI>
nested item 2</LI>

View File

@@ -17,7 +17,7 @@
//
// To use this sample, simply select Open File from the file menu,
// select the file you want to play - and MediaPlayer will play the file in a
// new notebook page, showing video if neccessary.
// new notebook page, showing video if necessary.
//
// You can select one of the menu options, or move the slider around
// to manipulate what is playing.

View File

@@ -6,6 +6,10 @@
* $Id$ *
* *
* $Log$
* Revision 1.4 2005/05/31 09:19:38 JS
* Typo correction patch [ 1208110 ] Lots of typo corrections
* Olly Betts
*
* Revision 1.3 2004/08/06 17:27:18 ABX
* Deleting void is undefined.
*
@@ -27,7 +31,7 @@
* always failed, must mkdir("~/.M") first)
* 2) "redesign" of "Folder properties" dialog and bug corrected, small change to
* MInputBox (it was too wide)
* 3) bug in ProvFC when it didn't reckognize the books as being in the correct
* 3) bug in ProvFC when it didn't recognize the books as being in the correct
* format (=> messages "can't reopen book") corrected
* 4) I tried to enhance MDialog_About(), but it didn't really work... oh well,
* I've never said I was an artist

View File

@@ -290,7 +290,7 @@ void MyFrame::OnOpenConnection(wxCommandEvent& WXUNUSED(event))
//
// Connect(addr, false) will issue a nonblocking connection request
// and return immediately. If the return value is true, then the
// connection has been already succesfully established. If it is
// connection has been already successfully established. If it is
// false, you must wait for the request to complete, either with
// WaitOnConnect() or by watching wxSOCKET_CONNECTION / LOST
// events (please read the documentation).