]> git.saurik.com Git - wxWidgets.git/commitdiff
fix for prior commit
authorDavid Surovell <davids@osafoundation.org>
Thu, 20 Apr 2006 18:36:22 +0000 (18:36 +0000)
committerDavid Surovell <davids@osafoundation.org>
Thu, 20 Apr 2006 18:36:22 +0000 (18:36 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38863 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/grid.cpp

index 9056462ed1acb97cf694c34353d9fd64663c5636..285cfeda4f0adb39e26309ceb011e056a7f732d8 100644 (file)
@@ -4287,15 +4287,15 @@ bool wxGrid::SetTable( wxGridTableBase *table, bool takeOwnership,
 
         if (m_ownTable)
         {
-            wxGridTableBase *t=m_table;
-            m_table=0;
+            wxGridTableBase *t = m_table;
+            m_table = NULL;
             delete t;
         }
 
         delete m_selection;
 
-        m_table = 0;
-        m_selection = 0;
+        m_table = NULL;
+        m_selection = NULL;
         m_numRows = 0;
         m_numCols = 0;
     }
@@ -6118,7 +6118,7 @@ bool wxGrid::ProcessTableMessage( wxGridTableMessage& msg )
 }
 
 // The behaviour of this function depends on the grid table class
-// Clear() function.  For the default wxGridStringTable class the
+// Clear() function. For the default wxGridStringTable class the
 // behavious is to replace all cell contents with wxEmptyString but
 // not to change the number of rows or cols.
 //
@@ -6130,7 +6130,7 @@ void wxGrid::ClearGrid()
             DisableCellEditControl();
 
         m_table->Clear();
-        if ( !GetBatchCount() 
+        if (!GetBatchCount())
             m_gridWin->Refresh();
     }
 }