]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed spelling mistake in comment
authorDavid Surovell <davids@osafoundation.org>
Fri, 30 Dec 2005 18:48:00 +0000 (18:48 +0000)
committerDavid Surovell <davids@osafoundation.org>
Fri, 30 Dec 2005 18:48:00 +0000 (18:48 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36600 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/gridsel.cpp

index f1d62b07f64764a477ec5f4b0e6734188bb230a9..91d57fc968f20a74f9bae9613ea0f40cd436d9ce 100644 (file)
@@ -800,10 +800,10 @@ void wxGridSelection::ClearSelection()
     wxRect r;
     wxGridCellCoords coords1, coords2;
 
     wxRect r;
     wxGridCellCoords coords1, coords2;
 
-    // deselect all invidiual cells and update the screen
+    // deselect all individual cells and update the screen
     if ( m_selectionMode == wxGrid::wxGridSelectCells )
     {
     if ( m_selectionMode == wxGrid::wxGridSelectCells )
     {
-        while( ( n = m_cellSelection.GetCount() ) > 0)
+        while ( ( n = m_cellSelection.GetCount() ) > 0)
         {
             n--;
             coords1 = m_cellSelection[n];
         {
             n--;
             coords1 = m_cellSelection[n];
@@ -820,7 +820,7 @@ void wxGridSelection::ClearSelection()
     }
 
     // deselect all blocks and update the screen
     }
 
     // deselect all blocks and update the screen
-    while( ( n = m_blockSelectionTopLeft.GetCount() ) > 0)
+    while ( ( n = m_blockSelectionTopLeft.GetCount() ) > 0)
     {
         n--;
         coords1 = m_blockSelectionTopLeft[n];
     {
         n--;
         coords1 = m_blockSelectionTopLeft[n];
@@ -840,7 +840,7 @@ void wxGridSelection::ClearSelection()
     // deselect all rows and update the screen
     if ( m_selectionMode != wxGrid::wxGridSelectColumns )
     {
     // deselect all rows and update the screen
     if ( m_selectionMode != wxGrid::wxGridSelectColumns )
     {
-        while( ( n = m_rowSelection.GetCount() ) > 0)
+        while ( ( n = m_rowSelection.GetCount() ) > 0)
         {
             n--;
             int row = m_rowSelection[n];
         {
             n--;
             int row = m_rowSelection[n];
@@ -860,7 +860,7 @@ void wxGridSelection::ClearSelection()
     // deselect all columns and update the screen
     if ( m_selectionMode != wxGrid::wxGridSelectRows )
     {
     // deselect all columns and update the screen
     if ( m_selectionMode != wxGrid::wxGridSelectRows )
     {
-        while( ( n = m_colSelection.GetCount() ) > 0)
+        while ( ( n = m_colSelection.GetCount() ) > 0)
         {
             n--;
             int col = m_colSelection[n];
         {
             n--;
             int col = m_colSelection[n];