Spelling fixed for comments and a wxASSERT_MSG. Fixes #14022.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70625 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Neis
2012-02-19 14:49:37 +00:00
parent c44db939d6
commit e75e881575
6 changed files with 7 additions and 7 deletions

View File

@@ -419,7 +419,7 @@ void wxGridCellAttr::SetSize(int num_rows, int num_cols)
wxASSERT_MSG( (!((num_rows > 0) && (num_cols <= 0)) ||
!((num_rows <= 0) && (num_cols > 0)) ||
!((num_rows == 0) && (num_cols == 0))),
wxT("wxGridCellAttr::SetSize only takes two postive values or negative/zero values"));
wxT("wxGridCellAttr::SetSize only takes two positive values or negative/zero values"));
m_sizeRows = num_rows;
m_sizeCols = num_cols;

View File

@@ -375,7 +375,7 @@ bool wxVListBoxComboPopup::HandleKey( int keycode, bool saturate, wxChar keychar
// The m_combo->SetValue() call above sets m_value to the index of this
// string. But if there are more identical string, the index is of the
// first occurence, which may be wrong, so set the index explicitly here,
// first occurrence, which may be wrong, so set the index explicitly here,
// _after_ the SetValue() call.
m_value = value;

View File

@@ -1645,7 +1645,7 @@ miSubtractO (
else if (r2->x1 <= x1)
{
/*
* Subtrahend preceeds minuend: nuke left edge of minuend.
* Subtrahend precedes minuend: nuke left edge of minuend.
*/
x1 = r2->x2;
if (x1 >= r1->x2)

View File

@@ -275,7 +275,7 @@ void wxStatusBarGeneric::DrawField(wxDC& dc, int i, int textHeight)
GetFieldRect(i, rect);
if (rect.GetWidth() <= 0)
return; // happens when the status bar is shrinked in a very small area!
return; // happens when the status bar is shrunk in a very small area!
int style = m_panes[i].GetStyle();
if (style != wxSB_FLAT)

View File

@@ -2879,7 +2879,7 @@ wxGenericTreeCtrl::PaintLevel(wxGenericTreeItem *item,
yOrigin = abs(yOrigin);
GetClientSize(&width, &height);
// Move end points to the begining/end of the view?
// Move end points to the beginning/end of the view?
if (y_mid < yOrigin)
y_mid = yOrigin;
if (oldY > yOrigin + height)

View File

@@ -782,7 +782,7 @@ void wxWizard::OnBackOrNext(wxCommandEvent& event)
wxCHECK_RET( m_page, wxT("should have a valid current page") );
// ask the current page first: notice that we do it before calling
// GetNext/Prev() because the data transfered from the controls of the page
// GetNext/Prev() because the data transferred from the controls of the page
// may change the value returned by these methods
if ( !m_page->Validate() || !m_page->TransferDataFromWindow() )
{