Fix inadvertant check-in of debugging code.

This commit is contained in:
Jeff Young 2019-06-26 00:26:25 +01:00
parent 00cf8ba976
commit cb1fd069f0
1 changed files with 1 additions and 2 deletions

View File

@ -134,6 +134,7 @@ FIELDS_GRID_TABLE<T>::~FIELDS_GRID_TABLE()
m_valueAttr->DecRef();
m_footprintAttr->DecRef();
m_urlAttr->DecRef();
m_nonUrlAttr->DecRef();
m_vAlignAttr->DecRef();
m_hAlignAttr->DecRef();
m_orientationAttr->DecRef();
@ -253,13 +254,11 @@ wxGridCellAttr* FIELDS_GRID_TABLE<T>::GetAttr( int aRow, int aCol, wxGridCellAtt
m_urlAttr->IncRef();
return m_urlAttr;
}
/*
else
{
m_nonUrlAttr->IncRef();
return m_nonUrlAttr;
}
*/
}
return nullptr;