]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/dbgrid.cpp
Added recursive event handler pushing to fix context help problem.
[wxWidgets.git] / src / common / dbgrid.cpp
index 713592835db19757788a9fcff68c0e268d86defd..83e673a9183c52e6e5f359f9edfc6b8cc4924fb7 100644 (file)
@@ -368,14 +368,6 @@ bool wxDbGridTableBase::CanGetValueAs(int row, int col, const wxString& typeName
 
 bool wxDbGridTableBase::CanSetValueAs(int row, int col, const wxString& typeName)
 {
-    //Is this needed? As will be validated on SetValueAsXXXX
-    ValidateRow(row);
-
-    if (m_data->IsColNull(m_ColInfo[col].DbCol))
-    {
-        return FALSE;
-    }
-
     if (typeName == wxGRID_VALUE_STRING)
     {
         //FIXME ummm What about blob field etc.